| 1 | <?php |
||
| 8 | class PostCartResponse extends Model |
||
| 9 | { |
||
| 10 | |||
| 11 | protected $cart = null; |
||
| 12 | |||
| 13 | protected $mappingClasses = [ |
||
| 14 | 'cart' => 'Yandex\Market\Partner\Models\CartResponse' |
||
| 15 | ]; |
||
| 16 | |||
| 17 | protected $propNameMap = []; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Retrieve the cart property |
||
| 21 | * |
||
| 22 | * @return CartResponse|null |
||
| 23 | */ |
||
| 24 | public function getCart() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Set the cart property |
||
| 31 | * |
||
| 32 | * @param CartResponse $cart |
||
| 33 | * @return $this |
||
| 34 | */ |
||
| 35 | 1 | public function setCart($cart) |
|
| 40 | } |
||
| 41 |