BulkPaymentCreateResponse

public struct BulkPaymentCreateResponse : Codable

Response model to create Bulk Payment.

  • A system assigned unique identification for the Bulk Payment Paylink.

    • This value is also a part of the URL.

    Declaration

    Swift

    public let uniqueID: String?
  • url

    Unique Bulk Payment Paylink URL that you will need to redirect PSU in order the payment to proceed.

    Declaration

    Swift

    public let url: String?
  • Base64 encoded QRCode image data that represents Bulk Payment Paylink URL.

    Declaration

    Swift

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

    Declaration

    Swift

    public init(uniqueID: String?,
                url: String?,
                qrCode: String?)

    Parameters

    uniqueID

    A system assigned unique identification for the Bulk Payment Paylink.

    url

    Instance’s Unique Bulk Payment Paylink URL that you will need to redirect PSU in order the payment to proceed.

    qrCode

    Base64 encoded QRCode image data that represents Bulk Payment Paylink URL.