DepositCheckRequest

public struct DepositCheckRequest : Encodable

Model that holds the check deposit data.

  • The image of the front of the check.

    Declaration

    Swift

    public var frontImage: String?
  • The image of the back of the check.

    Declaration

    Swift

    public var backImage: String?
  • The currency details what currency type will be used for transactions, using the ISO-4217 format. The keys can be mapped from Currency if you want type safety.

    Declaration

    Swift

    public var currency: String
  • The amount is the value associated with the check, in cents.

    Declaration

    Swift

    public var amount: Int64
  • 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 var externalId: String
  • Service fees associated with the load funds transaction.

    Declaration

    Swift

    public var serviceFees: [ServiceFee]?
  • Auxiliary constructor.

    Declaration

    Swift

    public init(
        currency: String,
        amount: Int64,
        externalId: String,
        serviceFees: [ServiceFee]? = nil)

    Parameters

    currency

    The currency details what currency type will be used for transactions, using the ISO-4217 format. The keys can be mapped from Currency if you want type safety.

    amount

    The amount is the value associated with the check, in cents.

    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.<

    serviceFees

    Service fees associated with the load funds transaction.

  • Auxiliary constructor.

    Declaration

    Swift

    public init(
        frontImage: String,
        backImage: String,
        currency: String,
        amount: Int64,
        externalId: String,
        serviceFees: [ServiceFee]? = nil)

    Parameters

    frontImage

    The image of the front of the check.

    backImage

    The image of the back of the check.

    currency

    The currency details what currency type will be used for transactions, using the ISO-4217 format. The keys can be mapped from Currency if you want type safety.

    amount

    The amount is the value associated with the check, in cents.

    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.<

    serviceFees

    Service fees associated with the load funds transaction.