JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour

File "SubMerchant.php"

Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/src/MercadoPago/Resources/Common/SubMerchant.php
File size: 1.22 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MercadoPago\Resources\Common;

/** Submerchant identification class. */
class SubMerchant
{
    /** Submerchant code. */
    public ?string $sub_merchant_id;

    /** Submerchant MCC according to Abecs decision and/or primary CNAE. */
    public ?string $mcc;

    /** Country where the submerchant is located. */
    public ?string $country;

    /** Street number where the submerchant is located. */
    public ?number $address_door_number;

    /**  CEP of the submerchant. */
    public ?string $zip;

    /** CPF or CNPJ identification of the submerchant. */
    public ?string $document_number;

    /** City where the submerchant is located. */
    public ?string $city;

    /** Street where the submerchant is located. */
    public ?string $address_street;

    /** Name of the submerchant . */
    public ?string $business_name;

    /** State where the submerchant is located . */
    public ?string $region_code_iso;

    /** Postal code of the submerchant . */
    public ?string $region_code;

    /** CPF or CNPJ number of the submerchant . */
    public ?string $document_type;

    /** Phone number of the submerchant . */
    public ?string $phone;

    /** Payment Facilitator URL . */
    public ?string $url;


}