| Total Complexity | 3 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class CreateWalletResponse extends AbstractResponse |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Wallet ID |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private string $walletId; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Wallet ID Hash |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | private string $walletIdHash; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Currency |
||
| 38 | * |
||
| 39 | * @var string |
||
| 40 | */ |
||
| 41 | private string $currency; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getWalletId(): string |
||
| 47 | { |
||
| 48 | return $this->walletId; |
||
| 49 | } |
||
| 50 | |||
| 51 | /** |
||
| 52 | * @return string |
||
| 53 | */ |
||
| 54 | public function getWalletIdHash(): string |
||
| 57 | } |
||
| 58 | |||
| 59 | /** |
||
| 60 | * @return string |
||
| 61 | */ |
||
| 62 | public function getCurrency(): string |
||
| 67 |