BulkPaymentPaylinkEntry

public struct BulkPaymentPaylinkEntry : Codable

Payment model for the Bulk Payment

  • It is the account that will receive the payment.

    Declaration

    Swift

    public let creditorAccount: PayByBankAccountRequest
  • Payment amount in decimal format.

    Declaration

    Swift

    public let amount: Decimal
  • Payment reference that will be displayed on the bank statement. 18 characters MAX.

    Declaration

    Swift

    public let reference: String
  • Defines the schedule date for the payment in ISO 8601 format.

    Warning

    Must be set to a date/time in GMT+0.

    Declaration

    Swift

    public let scheduledFor: Date?
  • Free text field for any client reference usage.

    Declaration

    Swift

    public let clientReferenceID: String?
  • Creates an instance from the specified parameters.

    Declaration

    Swift

    public init(creditorAccount: PayByBankAccountRequest,
                amount: Decimal,
                reference: String,
                scheduledFor: Date?,
                clientReferenceID: String?)

    Parameters

    creditorAccount

    Instance’s PayByBankAccountRequest, which is the account that will receive the payment..

    amount

    Payment amount in decimal format.

    reference

    Payment reference that will be displayed on the bank statement. 18 characters MAX.

    scheduledFor

    Defines the schedule date for the payment in ISO 8601 format.

    clientReferenceID

    Free text field for any client reference usage.