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

File "PointDevices.php"

Full Path: /var/www/laravel_filter/vendor/mercadopago/dx-php/src/MercadoPago/Resources/PointDevices.php
File size: 641 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MercadoPago\Resources;

use MercadoPago\Net\MPResource;
use MercadoPago\Serialization\Mapper;

/** PointDevices class. */
class PointDevices extends MPResource
{
    /** Class mapper. */
    use Mapper;

    /** Search paging. */
    public array|object|null $paging;

    /** Devices. */
    public array|object|null $devices;

    private $map = [
        "paging" => "MercadoPago\Resources\Common\Paging",
        "devices" => "MercadoPago\Resources\Point\Device",
    ];

    /**
     * Method responsible for getting map of entities.
     */
    public function getMap(): array
    {
        return $this->map;
    }
}