OPPInstallmentFeeInfo

@objc
public final class OPPInstallmentFeeInfo : NSObject

This class represents the fee information.

  • type: type of fee

    Declaration

    Swift

    @objc
    public let type: String
  • ratePercentage: percentage rage

    Declaration

    Swift

    @objc
    public let ratePercentage: String
  • monthlyRatePercentage: monthly percentage rage

    Declaration

    Swift

    @objc
    public let monthlyRatePercentage: String
  • flatFee: flat fee

    Declaration

    Swift

    @objc
    public let flatFee: String
  • Creates an object representing OPPInstallmentFeeInfo configuration.

    Declaration

    Swift

    @objc
    public init(type: String,
                ratePercentage: String,
                monthlyRatePercentage: String,
                flatFee: String)

    Parameters

    type

    type eg: CONSUMER.

    ratePercentage

    percentage rate.

    monthlyRatePercentage

    monthly rate percentage.

    flatFee

    flat fee.

    Return Value

    Returns an object representing OPPInstallmentFeeInfo configuration.