| Total Complexity | 5 |
| Total Lines | 60 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class BankAccount |
||
| 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 | /** |
||
| 41 | * @var string|null |
||
| 42 | * @SerializedName("CountryCode") |
||
| 43 | * @Type("string") |
||
| 44 | */ |
||
| 45 | private $countryCode; |
||
| 46 | |||
| 47 | public function getIban(): ?string |
||
| 48 | { |
||
| 49 | return $this->iban; |
||
| 50 | } |
||
| 51 | |||
| 52 | public function getHolderName(): ?string |
||
| 53 | { |
||
| 54 | return $this->holderName; |
||
| 55 | } |
||
| 56 | |||
| 57 | public function getBic(): ?string |
||
| 60 | } |
||
| 61 | |||
| 62 | public function getBankName(): ?string |
||
| 63 | { |
||
| 64 | return $this->bankName; |
||
| 65 | } |
||
| 66 | |||
| 67 | public function getCountryCode(): ?string |
||
| 70 | } |
||
| 71 | } |
||
| 72 |