JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "Transactions.php"
Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/src/MercadoPago/Resources/User/Transactions.php
File size: 806 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace MercadoPago\Resources\User;
use MercadoPago\Serialization\Mapper;
/** Transactions class. */
class Transactions
{
/** Class mapper. */
use Mapper;
/** The number of canceled transactions. */
public ?int $canceled;
/** The number of completed transactions. */
public ?int $completed;
/** The transaction period (e.g., "historic"). */
public ?string $period;
/** User ratings and feedback statistics. */
public array|object|null $ratings;
/** The total number of transactions. */
public ?int $total;
public $map = [
"ratings" => "MercadoPago\Resources\User\Ratings",
];
/**
* Method responsible for getting map of entities.
*/
public function getMap(): array
{
return $this->map;
}
}