| Total Complexity | 4 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 15 | final class AuthorizeReferencedResponse extends Response |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var Transaction|null |
||
| 19 | * @SerializedName("Transaction") |
||
| 20 | * @Type("Ticketpark\SaferpayJson\Response\Container\Transaction") |
||
| 21 | */ |
||
| 22 | private $transaction; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @var PaymentMeans|null |
||
| 26 | * @SerializedName("PaymentMeans") |
||
| 27 | * @Type("Ticketpark\SaferpayJson\Response\Container\PaymentMeans") |
||
| 28 | */ |
||
| 29 | private $paymentMeans; |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @var Payer|null |
||
| 33 | * @SerializedName("Payer") |
||
| 34 | * @Type("Ticketpark\SaferpayJson\Response\Container\Payer") |
||
| 35 | */ |
||
| 36 | private $payer; |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @var Dcc|null |
||
| 40 | * @SerializedName("Dcc") |
||
| 41 | * @Type("Ticketpark\SaferpayJson\Response\Container\Dcc") |
||
| 42 | */ |
||
| 43 | private $dcc; |
||
| 44 | |||
| 45 | public function getTransaction(): ?Transaction |
||
| 46 | { |
||
| 47 | return $this->transaction; |
||
| 48 | } |
||
| 49 | |||
| 50 | public function getPaymentMeans(): ?PaymentMeans |
||
| 53 | } |
||
| 54 | |||
| 55 | public function getPayer(): ?Payer |
||
| 56 | { |
||
| 57 | return $this->payer; |
||
| 58 | } |
||
| 59 | |||
| 60 | public function getDcc(): ?Dcc |
||
| 63 | } |
||
| 64 | } |
||
| 65 |