| Total Complexity | 4 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | final class Payee |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string|null |
||
| 14 | * @SerializedName("Iban") |
||
| 15 | * @Type("string") |
||
| 16 | */ |
||
| 17 | private $iban; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var string|null |
||
| 21 | * @SerializedName("HolderName") |
||
| 22 | * @Type("string") |
||
| 23 | */ |
||
| 24 | private $holderName; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string|null |
||
| 28 | * @SerializedName("Bic") |
||
| 29 | * @Type("string") |
||
| 30 | */ |
||
| 31 | private $bic; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var string|null |
||
| 35 | * @SerializedName("BankName") |
||
| 36 | * @Type("string") |
||
| 37 | */ |
||
| 38 | private $bankName; |
||
| 39 | |||
| 40 | public function getIban(): ?string |
||
| 41 | { |
||
| 42 | return $this->iban; |
||
| 43 | } |
||
| 44 | |||
| 45 | public function getHolderName(): ?string |
||
| 48 | } |
||
| 49 | |||
| 50 | public function getBic(): ?string |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getBankName(): ?string |
||
| 60 |