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