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

    externalId

    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.

    metadata

    Allows for any number of custom metadata keys and values to be stored with a given entity.

    isPrimary

    If the bank is primary.