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