Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1020 Bytes

File metadata and controls

29 lines (20 loc) · 1020 Bytes

StorageUpload200Response

Properties

Name Type Description Notes
url str [optional]

Example

from aerostack.models.storage_upload200_response import StorageUpload200Response

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

# convert the object into a dict
storage_upload200_response_dict = storage_upload200_response_instance.to_dict()
# create an instance of StorageUpload200Response from a dict
storage_upload200_response_form_dict = storage_upload200_response.from_dict(storage_upload200_response_dict)

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