PayByBankAccountResponse
public struct PayByBankAccountResponse : Codable
-
- Enum: “SortCode” “Iban” “Bban”
Declaration
Swift
public let type: PayByBankAccountType?
-
The identification that you provided with the request.
Declaration
Swift
public let identification: String?
-
The owner_name that you provided with the PaymentRequest.
Declaration
Swift
public let name: String?
-
Currency code of the account in ISO 4217 format.
- Enum: “GBP” “USD” “EUR”
Declaration
Swift
public let currency: PayByBankCurrency?
-
A standard ISO 9362 compliant Bank Identifier Code. It is required for international payments (if either sender or the creditor account is outside the SEPA region).
Declaration
Swift
public let bic: String?
-
Declaration
Swift
public init(type: PayByBankAccountType?, identification: String?, name: String?, currency: PayByBankCurrency?, bic: String?)
-
Declaration
Swift
init(from decoder: Decoder) throws
-
Declaration
Swift
func encode(to encoder: Encoder) throws