| 1 | <?php |
||
| 7 | abstract class AbstractOrder extends AbstractObject |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Order limit price in secondary currency. |
||
| 11 | * @return double |
||
| 12 | */ |
||
| 13 | 3 | public function getPrice() |
|
| 17 | |||
| 18 | /** |
||
| 19 | * Type of order. |
||
| 20 | * @see \IndependentReserve\OrderType |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 4 | public function getType() |
|
| 30 | |||
| 31 | /** |
||
| 32 | * UTC timestamp of when order was created. |
||
| 33 | * @return DateTime |
||
| 34 | */ |
||
| 35 | 7 | public function getCreatedTimestamp() |
|
| 39 | |||
| 40 | /** |
||
| 41 | * Primary currency of order. |
||
| 42 | * @return string |
||
| 43 | */ |
||
| 44 | 4 | public function getPrimaryCurrencyCode() |
|
| 48 | |||
| 49 | /** |
||
| 50 | * Secondary currency of order. |
||
| 51 | * @return string |
||
| 52 | */ |
||
| 53 | 4 | public function getSecondaryCurrencyCode() |
|
| 57 | |||
| 58 | /** |
||
| 59 | * Order status. |
||
| 60 | * @return string |
||
| 61 | */ |
||
| 62 | 4 | public function getStatus() |
|
| 66 | |||
| 67 | /** |
||
| 68 | * Unique identifier of the order. |
||
| 69 | * @return string |
||
| 70 | */ |
||
| 71 | 4 | public function getGuid() |
|
| 75 | } |
||
| 76 |