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