| Total Complexity | 6 |
| Total Lines | 72 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | final class CustomPlan |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var int|null |
||
| 14 | * @SerializedName("MinimumNumberOfInstallments") |
||
| 15 | * @Type("int") |
||
| 16 | */ |
||
| 17 | private $minimumNumberOfInstallments; |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @var int|null |
||
| 21 | * @SerializedName("MaximumNumberOfInstallments") |
||
| 22 | * @Type("int") |
||
| 23 | */ |
||
| 24 | private $maximumNumberOfInstallments; |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @var string|null |
||
| 28 | * @SerializedName("InterestRate") |
||
| 29 | * @Type("string") |
||
| 30 | */ |
||
| 31 | private $interestRate; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @var Amount|null |
||
| 35 | * @SerializedName("InstallmentFee") |
||
| 36 | * @Type("Ticketpark\SaferpayJson\Response\Container\Amount") |
||
| 37 | */ |
||
| 38 | private $installmentFee; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @var string|null |
||
| 42 | * @SerializedName("AnnualPercentageRate") |
||
| 43 | * @Type("string") |
||
| 44 | */ |
||
| 45 | private $annualPercentageRate; |
||
| 46 | |||
| 47 | /** |
||
| 48 | * @var Amount|null |
||
| 49 | * @SerializedName("TotalAmountDue") |
||
| 50 | * @Type("Ticketpark\SaferpayJson\Response\Container\Amount") |
||
| 51 | */ |
||
| 52 | private $totalAmountDue; |
||
| 53 | |||
| 54 | public function getMinimumNumberOfInstallments(): ?int |
||
| 55 | { |
||
| 56 | return $this->minimumNumberOfInstallments; |
||
| 57 | } |
||
| 58 | |||
| 59 | public function getMaximumNumberOfInstallments(): ?int |
||
| 62 | } |
||
| 63 | |||
| 64 | public function getInterestRate(): ?string |
||
| 65 | { |
||
| 66 | return $this->interestRate; |
||
| 67 | } |
||
| 68 | |||
| 69 | public function getInstallmentFee(): ?Amount |
||
| 70 | { |
||
| 71 | return $this->installmentFee; |
||
| 72 | } |
||
| 73 | |||
| 74 | public function getAnnualPercentageRate(): ?string |
||
| 75 | { |
||
| 76 | return $this->annualPercentageRate; |
||
| 77 | } |
||
| 78 | |||
| 79 | public function getTotalAmountDue(): ?Amount |
||
| 82 | } |
||
| 83 | } |
||
| 84 |