Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

RequestDataExportPostRequest

Properties

Name Type Description Notes
action str
format str [optional] [default to 'json']

Example

from multiflexi_client.models.request_data_export_post_request import RequestDataExportPostRequest

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

# convert the object into a dict
request_data_export_post_request_dict = request_data_export_post_request_instance.to_dict()
# create an instance of RequestDataExportPostRequest from a dict
request_data_export_post_request_from_dict = RequestDataExportPostRequest.from_dict(request_data_export_post_request_dict)

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