Check
public struct Check : Codable
The check model.
-
The check uuid.
Declaration
Swift
public var checkUuid: String
-
The account uuid.
Declaration
Swift
public var accountUuid: String?
-
The uuid of the transaction tied to this check.
Declaration
Swift
public var transactionUuid: String
-
The uuid of the wallet where this check has been deposited.
Declaration
Swift
public var walletUuid: String
-
The external id of this transaction.
Declaration
Swift
public var externalId: String
-
The check number.
Declaration
Swift
public var checkNumber: String
-
The currency code in ISO-4217 format.
Declaration
Swift
public var currencyString: String
-
The currency code in ISO-4217 format. Check
currencyString
ifnil
.Declaration
Swift
public var currency: Currency? { get }
-
The original amount entered by the customer in the currency of the check, defined in cents.
Declaration
Swift
public var enteredAmount: Int64
-
The final settled amount after the check has been approved, defined in cents.
Declaration
Swift
public var settledAmount: Int64?
-
The image of the front of the check.
Declaration
Swift
public var frontImageBase64: String?
-
The image of the front of the check.
Declaration
Swift
public var frontImage: UIImage? { get }
-
The image of the back of the check.
Declaration
Swift
public var backImageBase64: String?
-
The image of the front of the check.
Declaration
Swift
public var backImage: UIImage? { get }
-
The status of the check.
Declaration
Swift
public var statusString: String
-
The status of the check. Check
statusString
ifnil
.Declaration
Swift
public var status: CheckStatus? { get }
-
The reason why a check is in a specific status.
Declaration
Swift
public var statusReason: String?
-
Information about the payor of a check.
Declaration
Swift
public var payorInformation: PayorInformation?
-
The date the check was created.
Declaration
Swift
public var createdAt: String
-
The date the check was last updated.
Declaration
Swift
public var updatedAt: String
-
The rejected reasons.
Declaration
Swift
public var rejectedReasons: [String]?