Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.06 KB

Check.md

File metadata and controls

35 lines (27 loc) · 1.06 KB

Check

Properties

Name Type Description Notes
bank_transit_number str [optional]
account_number str [optional]
account_type str [optional]
check_number str [optional]
ach_accepted str [optional]
check_type str [optional]
full_micr str [optional]
reader_status str [optional]

Example

from freedompay_client.models.check import Check

# TODO update the JSON string below
json = "{}"
# create an instance of Check from a JSON string
check_instance = Check.from_json(json)
# print the JSON string representation of the object
print Check.to_json()

# convert the object into a dict
check_dict = check_instance.to_dict()
# create an instance of Check from a dict
check_form_dict = check.from_dict(check_dict)

[Back to Model list] [Back to API list] [Back to README]