OPPFirstInstallment

@objc
public final class OPPFirstInstallment : NSObject

This class represents the first installment information.

  • installmentFee: installment fee.

    Declaration

    Swift

    @objc
    public let installmentFee: String
  • totalAmountExcludingUpFrontFees: total amount excludes up front fees.

    Declaration

    Swift

    @objc
    public let totalAmountExcludingUpFrontFee: String
  • amount: amount fee.

    Declaration

    Swift

    @objc
    public let amount: String
  • upfrontFee: upfront fee.

    Declaration

    Swift

    @objc
    public let upfrontFee: String
  • totalAmount: total amount.

    Declaration

    Swift

    @objc
    public let totalAmount: String
  • Creates an object representing OPPFirstInstallment configuration.

    Declaration

    Swift

    @objc
    public init(installmentFee: String,
                totalAmountExcludingUpFrontFee: String,
                amount: String,
                upfrontFee: String,
                totalAmount: String)

    Parameters

    installmentFee

    installment fees.

    totalAmountExcludingUpFrontFee

    total amount excluding upfront fees.

    amount

    amount.

    upfrontFee

    upfront fee.

    totalAmount

    total amount.

    Return Value

    Returns an object representing OPPFirstInstallment configuration.