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\Items;
use Yandex\Market\Partner\Models\Delivery;
use Yandex\Common\Model;
class CartRequest extends Model
{
protected $currency = null;
protected $items = null;
protected $delivery = null;
protected $mappingClasses = [
'items' => 'Yandex\Market\Partner\Models\Items',
'delivery' => 'Yandex\Market\Partner\Models\Delivery'
];
protected $propNameMap = [];
/**
* Retrieve the currency property
*
* @return string|null
*/
public function getCurrency()
return $this->currency;
}
* Retrieve the items property
* @return Items|null
public function getItems()
return $this->items;
* Retrieve the delivery property
* @return Delivery|null
public function getDelivery()
return $this->delivery;