Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.44 KB

File metadata and controls

40 lines (31 loc) · 1.44 KB

ExportResult

Properties

Name Type Description Notes
account_id str String that uniquely identifies this account resource.
uri str
date_created str
date_updated str
revision int
export_id str String that uniquely identifies this export resource
status ExportStatus
size int
resource_type ExportResourceType
query object Query params used to filter exported documents
format List[str] Desired fields of exported documents
output ExportResultOutput

Example

from freeclimb.models.export_result import ExportResult

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

# convert the object into a dict
export_result_dict = export_result_instance.to_dict()
# create an instance of ExportResult from a dict
export_result_from_dict = ExportResult.from_dict(export_result_dict)

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