Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | class SendPaymentResponse extends AbstractResponse |
||
23 | { |
||
24 | /** |
||
25 | * @Serializer\SerializedName("tx_list") |
||
26 | * @Serializer\Type("array<Bitaps\WalletAPI\Response\SendPayment\Model\Receiver>") |
||
27 | * |
||
28 | * @var Receiver[] |
||
29 | */ |
||
30 | private array $txList; |
||
31 | |||
32 | /** |
||
33 | * @return Receiver[] |
||
34 | */ |
||
35 | public function getTxList(): array |
||
40 |