Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 980 Bytes

File metadata and controls

29 lines (20 loc) · 980 Bytes

ExportRequestOutput

Properties

Name Type Description Notes
type ExportOutputType

Example

from freeclimb.models.export_request_output import ExportRequestOutput

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

# convert the object into a dict
export_request_output_dict = export_request_output_instance.to_dict()
# create an instance of ExportRequestOutput from a dict
export_request_output_from_dict = ExportRequestOutput.from_dict(export_request_output_dict)

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