| Total Complexity | 6 |
| Total Lines | 72 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 11 | final class PaymentMeans |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Brand|null |
||
| 15 | * @SerializedName("Brand") |
||
| 16 | * @Type("Ticketpark\SaferpayJson\Response\Container\Brand") |
||
| 17 | */ |
||
| 18 | private $brand; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string|null |
||
| 22 | * @SerializedName("DisplayText") |
||
| 23 | * @Type("string") |
||
| 24 | */ |
||
| 25 | private $displayText; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string|null |
||
| 29 | * @SerializedName("Wallet") |
||
| 30 | * @Type("string") |
||
| 31 | */ |
||
| 32 | private $wallet; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @var Card|null |
||
| 36 | * @SerializedName("Card") |
||
| 37 | * @Type("Ticketpark\SaferpayJson\Response\Container\Card") |
||
| 38 | */ |
||
| 39 | private $card; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @var BankAccount|null |
||
| 43 | * @SerializedName("BankAccount") |
||
| 44 | * @Type("Ticketpark\SaferpayJson\Response\Container\BankAccount") |
||
| 45 | */ |
||
| 46 | private $bankAccount; |
||
| 47 | |||
| 48 | /** |
||
| 49 | * @var Twint|null |
||
| 50 | * @SerializedName("Twint") |
||
| 51 | * @Type("Ticketpark\SaferpayJson\Response\Container\Twint") |
||
| 52 | */ |
||
| 53 | private $twint; |
||
| 54 | |||
| 55 | public function getBrand(): ?Brand |
||
| 56 | { |
||
| 57 | return $this->brand; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getDisplayText(): ?string |
||
| 63 | } |
||
| 64 | |||
| 65 | public function getWallet(): ?string |
||
| 68 | } |
||
| 69 | |||
| 70 | public function getCard(): ?Card |
||
| 73 | } |
||
| 74 | |||
| 75 | public function getBankAccount(): ?BankAccount |
||
| 76 | { |
||
| 77 | return $this->bankAccount; |
||
| 78 | } |
||
| 79 | |||
| 80 | public function getTwint(): ?Twint |
||
| 83 | } |
||
| 84 | } |
||
| 85 |