PaymentPlanOption
An object representing a Svea App Wallet payment plan option.
| Property | Description | Type | Mandatory |
|---|---|---|---|
| campaignCode | Campaign code of payment plan. | Int | Yes |
| description | Description of payment plan | String | Yes |
| paymentPlanType | Type of payment plan. | String | Yes |
| contractLengthInMonths | Duration of contract in months. | Int | Yes |
| monthlyAnnuity | Monthy annuity fee of payment. | Double | Yes |
| initialFee | Initial fee of payment. | Double | Yes |
| notificationFee | Notification fees . | Double | Yes |
| interestRatePercent | The interest rate in percentage. | Double | Yes |
| effectiveInterestRatePercent | Effective interest rate in percentage. | Double | Yes |
| nrOfPaymentFreeMonths | Number of payment free months. | Int | Yes |
| nrOfInterestFreeMonths | Number of interest free months. | Int | Yes |
struct PaymentPlanOption {
var effectiveInterestRatePercent: Double
var description: String
var paymentPlanType: String
var initialFee: Double
var monthlyAnnuity: Double
var interestRatePercent: Double
var nrOfPaymentFreeMonths: Int
var campaignCode: Int
var contractLengthInMonths: Int
var notificationFee: Double
var nrOfInterestFreeMonths: Int
}