| Name | Type | Description | Notes |
|---|---|---|---|
| resource_type | ExportResourceType | ||
| format | List[str] | [optional] | |
| output | ExportRequestOutput | ||
| query | object | [optional] |
from freeclimb.models.export_request import ExportRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ExportRequest from a JSON string
export_request_instance = ExportRequest.from_json(json)
# print the JSON string representation of the object
print(ExportRequest.to_json())
# convert the object into a dict
export_request_dict = export_request_instance.to_dict()
# create an instance of ExportRequest from a dict
export_request_from_dict = ExportRequest.from_dict(export_request_dict)