JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Settings.php"
Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/src/MercadoPago/Resources/PaymentMethod/Settings.php
File size: 783 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace MercadoPago\Resources\PaymentMethod;
use MercadoPago\Serialization\Mapper;
/** Settings class. */
class Settings
{
/** Class mapper. */
use Mapper;
/** Setting bin. */
public array|object|null $bin;
/** Setting card number. */
public array|object|null $card_number;
/** Setting security code. */
public array|object|null $security_code;
private $map = [
"bin" => "MercadoPago\Resources\PaymentMethod\Bin",
"card_number" => "MercadoPago\Resources\PaymentMethod\CardNumber",
"security_code" => "MercadoPago\Resources\PaymentMethod\SecurityCode",
];
/**
* Method responsible for getting map of entities.
*/
public function getMap(): array
{
return $this->map;
}
}