Bank
public struct Bank : Codable
The bank model.
-
The unique token for this bank. This is how you will identify this bank in the future throughout the API.
Declaration
Swift
public var paymentMethodUuid: String
-
The account uuid.
Declaration
Swift
public var accountUuid: String?
-
Status of the bank account.
Declaration
Swift
public var statusString: String
-
Status of the bank account. Check
statusString
ifnil
.Declaration
Swift
public var status: BankStatus? { get }
-
The status reason of the bank account.
Declaration
Swift
public var statusReasonString: String?
-
The status reason of the bank account. Check
statusReasonString
ifnil
.Declaration
Swift
public var statusReason: PaymentMethodStatusReason? { get }
-
Type of the bank account.
Declaration
Swift
public var typeString: String
-
Type of the bank account. Check
typeString
ifnil
.Declaration
Swift
public var type: BankType? { get }
-
Last four digits.
Declaration
Swift
public var lastFour: String
-
Three-letter country code (ISO 3166-1 alpha-3). The keys can be mapped from
Country
if you want type safety.Declaration
Swift
public var country: String
-
The currency details what currency type will be used for transactions, using the ISO-4217 format.
Declaration
Swift
public var currencyString: String
-
The currency details what currency type will be used for transactions, using the ISO-4217 format. Check
currencyString
ifnil
.Declaration
Swift
public var currency: Currency? { get }
-
Indicates if a bank account is linked from Plaid.
Declaration
Swift
public var isPlaid: Bool
-
Types of transactions supported by this bank account.
Declaration
Swift
public var flags: BankFlags?
-
The bank account details need to be one of the structures.
Declaration
Swift
public var bankAccountDetails: BankAccountDetails
-
Status fail reason.
Declaration
Swift
public var failReason: String?
-
The unique identifier of this bank in your own system.
Declaration
Swift
public var externalId: String
-
The bank’s token creation date.
Declaration
Swift
public var createdAt: String
-
The bank’s modification date.
Declaration
Swift
public var updatedAt: String