BulkPaymentPaylinkOptionsResponse
public struct BulkPaymentPaylinkOptionsResponse : Codable
Options which are about paylink for Bulk Payment.
-
Client id of the API consumer.
Declaration
Swift
public let clientID: String?
-
Tenant id of the API consumer.
Declaration
Swift
public let tenantID: String?
-
After the payment directly returns to the tenant’s url if set to true.
Note
Defaults to false.Declaration
Swift
public let autoRedirect: Bool?
-
If you are set true, no redirect after payment.
Declaration
Swift
public let dontRedirect: Bool?
-
If bank is pre-set on creation a temporary consent url for payment operation.
Declaration
Swift
public let temporaryConsentURL: String?
-
Expire date of temporary consent url.
Declaration
Swift
public let temporaryConsentURLExpireDate: Date?
-
Disables QR Code component on paylink.
Declaration
Swift
public let disableQrCode: Bool?
-
Purpose of the bulk payment.
Declaration
Swift
public let purpose: String?
-
init(clientID:
tenantID: autoRedirect: dontRedirect: temporaryConsentURL: temporaryConsentURLExpireDate: disableQrCode: purpose: ) Creates an instance from the specified parameters.
Declaration
Swift
public init(clientID: String?, tenantID: String?, autoRedirect: Bool?, dontRedirect: Bool?, temporaryConsentURL: String?, temporaryConsentURLExpireDate: Date?, disableQrCode: Bool?, purpose: String?)
Parameters
clientID
Client id of the API consumer.
tenantID
Tenant id of the API consumer.
autoRedirect
After the payment directly returns to the tenant’s url if set to true.
dontRedirect
If you are set true, no redirect after payment.
temporaryConsentURL
If bank is pre-set on creation a temporary consent url for payment operation.
temporaryConsentURLExpireDate
Expire date of temporary consent url.
disableQrCode
Disables QR Code component on paylink.
purpose
Purpose of the bulk payment.