Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

StatementExportRequest.md

File metadata and controls

32 lines (23 loc) · 1.12 KB

StatementExportRequest

Request statement export.

Properties

Name Type Description Notes
disbursement_batch_id str [optional]
export_format str Format for export.
range StartEnd [optional]

Example

from openapi_client.models.statement_export_request import StatementExportRequest

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

# convert the object into a dict
statement_export_request_dict = statement_export_request_instance.to_dict()
# create an instance of StatementExportRequest from a dict
statement_export_request_from_dict = StatementExportRequest.from_dict(statement_export_request_dict)

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