| Total Complexity | 3 |
| Total Lines | 36 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 11 | final class Invoice |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @var Payee|null |
||
| 15 | * @SerializedName("Payee") |
||
| 16 | * @Type("Ticketpark\SaferpayJson\Response\Container\Payee") |
||
| 17 | */ |
||
| 18 | private $payee; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @var string|null |
||
| 22 | * @SerializedName("ReasonForTransfer") |
||
| 23 | * @Type("string") |
||
| 24 | */ |
||
| 25 | private $reasonForTransfer; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var string|null |
||
| 29 | * @SerializedName("DueDate") |
||
| 30 | * @Type("string") |
||
| 31 | */ |
||
| 32 | private $dueDate; |
||
| 33 | |||
| 34 | public function getPayee(): ?Payee |
||
| 35 | { |
||
| 36 | return $this->payee; |
||
| 37 | } |
||
| 38 | |||
| 39 | public function getReasonForTransfer(): ?string |
||
| 40 | { |
||
| 41 | return $this->reasonForTransfer; |
||
| 42 | } |
||
| 43 | |||
| 44 | public function getDueDate(): ?string |
||
| 47 | } |
||
| 48 | } |
||
| 49 |