| 1 | <?php |
||
| 5 | class FiatWithdrawal extends AbstractTimestampedObject |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Unique identifier of this request. |
||
| 9 | * @return string |
||
| 10 | */ |
||
| 11 | 1 | public function getGuid() |
|
| 15 | |||
| 16 | /** |
||
| 17 | * Independent Reserve account to withdraw from. |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | 1 | public function getAccountGuid() |
|
| 24 | |||
| 25 | /** |
||
| 26 | * Request status in the workflow. |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | 1 | public function getStatus() |
|
| 33 | |||
| 34 | /** |
||
| 35 | * Total amount being withdrawn by the user (inclusive of any fees). |
||
| 36 | * @return double |
||
| 37 | */ |
||
| 38 | 1 | public function getTotalWithdrawalAmount() |
|
| 42 | |||
| 43 | /** |
||
| 44 | * Fee amount which will be taken out of the withdrawal amount. |
||
| 45 | * @return double |
||
| 46 | */ |
||
| 47 | 1 | public function getFeeAmount() |
|
| 51 | |||
| 52 | /** |
||
| 53 | * Currency being withdrawn. |
||
| 54 | * @return string |
||
| 55 | */ |
||
| 56 | 1 | public function getCurrency() |
|
| 60 | } |
||
| 61 |