| 1 | <?php |
||
| 9 | class Order |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * id |
||
| 13 | * |
||
| 14 | * @var mixed |
||
| 15 | * @access private |
||
| 16 | * |
||
| 17 | * @Rest\Id |
||
| 18 | * @Rest\Attribute(name="id", type="string") |
||
| 19 | */ |
||
| 20 | private $id; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * customerPaidAmount |
||
| 24 | * |
||
| 25 | * @var int |
||
| 26 | * @access private |
||
| 27 | * |
||
| 28 | * @Rest\Attribute(name="customerPaidAmount", type="integer") |
||
| 29 | */ |
||
| 30 | private $customerPaidAmount; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * status |
||
| 34 | * |
||
| 35 | * @var string |
||
| 36 | * @access private |
||
| 37 | * |
||
| 38 | * @Rest\Attribute(name="status", type="string") |
||
| 39 | */ |
||
| 40 | private $status; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Getter for id |
||
| 44 | * |
||
| 45 | * @return string |
||
| 46 | */ |
||
| 47 | public function getId() |
||
| 51 | |||
| 52 | /** |
||
| 53 | * Setter for id |
||
| 54 | * |
||
| 55 | * @param string $id |
||
| 56 | * @return Order |
||
| 57 | */ |
||
| 58 | public function setId($id) |
||
| 64 | |||
| 65 | /** |
||
| 66 | * Getter for customerPaidAmount |
||
| 67 | * |
||
| 68 | * @return int |
||
| 69 | */ |
||
| 70 | public function getCustomerPaidAmount() |
||
| 74 | |||
| 75 | /** |
||
| 76 | * Setter for customerPaidAmount |
||
| 77 | * |
||
| 78 | * @param int $customerPaidAmount |
||
| 79 | * @return Order |
||
| 80 | */ |
||
| 81 | public function setCustomerPaidAmount($customerPaidAmount) |
||
| 87 | |||
| 88 | /** |
||
| 89 | * Getter for status |
||
| 90 | * |
||
| 91 | * @return string |
||
| 92 | */ |
||
| 93 | public function getStatus() |
||
| 97 | |||
| 98 | /** |
||
| 99 | * Setter for status |
||
| 100 | * |
||
| 101 | * @param string $status |
||
| 102 | * @return Order |
||
| 103 | */ |
||
| 104 | public function setStatus($status) |
||
| 110 | } |
||
| 111 |