for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Market\Partner\Models;
use Yandex\Market\Partner\Models\Pager;
use Yandex\Market\Partner\Models\Orders;
use Yandex\Common\Model;
class GetOrdersResponse extends Model
{
protected $pager = null;
protected $orders = null;
protected $mappingClasses = [
'pager' => 'Yandex\Market\Partner\Models\Pager',
'orders' => 'Yandex\Market\Partner\Models\Orders'
];
protected $propNameMap = [];
/**
* Retrieve the pager property
*
* @return Pager|null
*/
public function getPager()
return $this->pager;
}
* Set the pager property
* @param Pager $pager
* @return $this
public function setPager($pager)
$this->pager = $pager;
return $this;
* Retrieve the orders property
* @return Orders|null
public function getOrders()
return $this->orders;
* Set the orders property
* @param Orders $orders
public function setOrders($orders)
$this->orders = $orders;