BankUpdateRequest
public struct BankUpdateRequest : Encodable, Sendable
Bank update request model.
-
This is a value that identifies the bank in your own system. This field MUST be unique per account and it is used to validate against duplicate records.
Declaration
Swift
public let externalId: String? -
Allows for any number of custom metadata keys and values to be stored with a given entity.
Declaration
Swift
public let metadata: [String : CustomValue]? -
If the bank is primary.
Declaration
Swift
public let isPrimary: Bool? -
Auxiliary constructor.
Declaration
Swift
public init( externalId: String? = nil, metadata: [String: CustomValue]? = nil, // swiftlint:disable:next discouraged_optional_boolean isPrimary: Bool? = nil)Parameters
externalIdThis is a value that identifies the bank in your own system. This field MUST be unique per account and it is used to validate against duplicate records.
metadataAllows for any number of custom metadata keys and values to be stored with a given entity.
isPrimaryIf the bank is primary.
View on GitHub