Subiendo proyecto completo sin restricciones de git ignore

This commit is contained in:
Jose Sanchez
2023-08-17 11:44:02 -04:00
parent a0d4f5ba3b
commit 20f1c60600
19921 changed files with 2509159 additions and 45 deletions

View 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;
}