JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Cardholder.php"
Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/src/MercadoPago/Resources/Customer/Cardholder.php
File size: 573 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace MercadoPago\Resources\Customer;
use MercadoPago\Serialization\Mapper;
/** Cardholder class */
class Cardholder
{
/** Class mapper. */
use Mapper;
/** Name of cardholder. */
public ?string $name;
/** Identification of cardholder. */
public array|object|null $identification;
private $map = [
"identification" => "MercadoPago\Resources\Common\Identification",
];
/**
* Method responsible for getting map of entities.
*/
public function getMap(): array
{
return $this->map;
}
}