VRPOptions

public struct VRPOptions : Codable

Options which are for VRP.

  • Indicates Validity Start Date in ISO 8601 format.

    Declaration

    Swift

    public let validFrom: Date?
  • Indicates Validity End Date in ISO 8601 format.

    Declaration

    Swift

    public let validTo: Date?
  • Set true, if you would like to get back the debtor’s account information that the payment is made from.

    Note

    If not provided, defaults to ‘true’.

    Declaration

    Swift

    public let getRefundInfo: Bool?
  • Creates an instance from the specified parameters.

    Declaration

    Swift

    public init(validFrom: Date?,
                validTo: Date?,
                getRefundInfo: Bool?)

    Parameters

    validFrom

    Indicates Validity Start Date in ISO 8601 format.

    validTo

    Indicates Validity End Date in ISO 8601 format.

    getRefundInfo

    Set true, if you would like to get back the debtor’s account information that the payment is made from.