| Total Complexity | 2 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 12 | final class AliasInsertDirectResponse extends Response |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * @var Alias |
||
| 16 | * @SerializedName("Alias") |
||
| 17 | * @Type("Ticketpark\SaferpayJson\Response\Container\Alias") |
||
| 18 | */ |
||
| 19 | private $alias; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var PaymentMeans |
||
| 23 | * @SerializedName("PaymentMeans") |
||
| 24 | * @Type("Ticketpark\SaferpayJson\Response\Container\PaymentMeans") |
||
| 25 | */ |
||
| 26 | private $paymentMeans; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var CheckResult |
||
| 30 | * @SerializedName("CheckResult") |
||
| 31 | * @Type("Ticketpark\SaferpayJson\Response\Container\CheckResult") |
||
| 32 | */ |
||
| 33 | private $checkResult; |
||
|
|
|||
| 34 | |||
| 35 | public function getAlias(): ?Alias |
||
| 36 | { |
||
| 37 | return $this->alias; |
||
| 38 | } |
||
| 39 | |||
| 40 | public function getPaymentMeans(): ?PaymentMeans |
||
| 43 | } |
||
| 44 | } |
||
| 45 |