Name |
Type |
Description |
Notes |
account_id |
String |
The ID of the account |
[optional] |
back_image_id |
String |
ID of the uploaded image of the back of the check |
[optional] |
business_id |
String |
Unique ID for the business. Exactly one of `business_id` or `person_id` must be set. |
[optional] |
check_amount |
Integer |
Amount on check in ISO 4217 minor currency units |
[optional] |
deposit_currency |
String |
ISO 4217 currency code for the deposit amount |
[optional] |
front_image_id |
String |
ID of the uploaded image of the front of the check |
[optional] |
metadata |
Object |
Optional field to store additional information about the resource. Intended to be used by the integrator to store non-sensitive data. |
[optional] |
person_id |
String |
Unique ID for the person. Exactly one of `person_id` or `business_id` must be set. |
[optional] |
require 'synctera'
instance = Synctera::DepositRequest.new(
account_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96,
back_image_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96,
business_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96,
check_amount: 12345,
deposit_currency: USD,
front_image_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96,
metadata: null,
person_id: b01db9c7-78f2-4a99-8aca-1231d32f9b96
)