Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
99
vendor/mercadopago/dx-php/src/MercadoPago/Entities/Shared/Payer.php
vendored
Normal file
99
vendor/mercadopago/dx-php/src/MercadoPago/Entities/Shared/Payer.php
vendored
Normal file
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
/**
|
||||
* Payer class file
|
||||
*/
|
||||
namespace MercadoPago;
|
||||
|
||||
use MercadoPago\Annotation\Attribute;
|
||||
use MercadoPago\Annotation\DenyDynamicAttribute;
|
||||
|
||||
/**
|
||||
* Payer Class
|
||||
*/
|
||||
class Payer extends Entity
|
||||
{
|
||||
/**
|
||||
* id
|
||||
* @Attribute()
|
||||
* @var string
|
||||
*/
|
||||
protected $id;
|
||||
|
||||
/**
|
||||
* entity_type
|
||||
* @Attribute(type = "string")
|
||||
* @var string
|
||||
*/
|
||||
protected $entity_type;
|
||||
|
||||
/**
|
||||
* type
|
||||
* @Attribute(type = "string")
|
||||
* @var string
|
||||
*/
|
||||
protected $type;
|
||||
|
||||
/**
|
||||
* name
|
||||
* @Attribute(type = "string")
|
||||
* @var string
|
||||
*/
|
||||
protected $name;
|
||||
|
||||
/**
|
||||
* surname
|
||||
* @Attribute(type = "string")
|
||||
* @var string
|
||||
*/
|
||||
protected $surname;
|
||||
|
||||
/**
|
||||
* first_name
|
||||
* @Attribute(type = "string")
|
||||
* @var string
|
||||
*/
|
||||
protected $first_name;
|
||||
|
||||
/**
|
||||
* last_name
|
||||
* @Attribute(type = "string")
|
||||
* @var string
|
||||
*/
|
||||
protected $last_name;
|
||||
|
||||
/**
|
||||
* email
|
||||
* @Attribute(type = "string")
|
||||
* @var string
|
||||
*/
|
||||
protected $email;
|
||||
|
||||
/**
|
||||
* date_created
|
||||
* @Attribute(type = "date")
|
||||
* @var \DateTime
|
||||
*/
|
||||
protected $date_created;
|
||||
|
||||
/**
|
||||
* phone
|
||||
* @Attribute()
|
||||
* @var object
|
||||
*/
|
||||
protected $phone;
|
||||
|
||||
/**
|
||||
* identification
|
||||
* @Attribute()
|
||||
* @var object
|
||||
*/
|
||||
protected $identification;
|
||||
|
||||
/**
|
||||
* address
|
||||
* @Attribute()
|
||||
* @var object
|
||||
*/
|
||||
protected $address;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user