| 1 | <?php |
||
| 7 | class RecentTrades extends AbstractTimestampedObject |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * The primary currency being shown. |
||
| 11 | * @return string |
||
| 12 | */ |
||
| 13 | 2 | public function getPrimaryCurrencyCode() |
|
| 17 | |||
| 18 | /** |
||
| 19 | * The secondary currency being used for pricing. |
||
| 20 | * @return string |
||
| 21 | */ |
||
| 22 | 2 | public function getSecondaryCurrencyCode() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * List of individual trades. |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | public function getTrades() |
||
| 37 | } |
||
| 38 |