| 1 | <?php |
||
| 7 | class BitcoinDepositAddress extends AbstractObject |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * Bitcoin address to use for deposits. |
||
| 11 | * @return string |
||
| 12 | */ |
||
| 13 | 2 | public function getBitcoinAddress() |
|
| 17 | |||
| 18 | /** |
||
| 19 | * UTC timestamp of when this address was last checked against Blockchain. |
||
| 20 | * @return DateTime |
||
| 21 | */ |
||
| 22 | 3 | public function getLastCheckedTimestamp() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * UTC timestamp of when this address is scheduled to next be checked against Blockchain. |
||
| 29 | * @return DateTime |
||
| 30 | */ |
||
| 31 | 3 | public function getNextUpdateTimestamp() |
|
| 35 | } |
||
| 36 |