Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.1 KB

File metadata and controls

29 lines (21 loc) · 1.1 KB

UploadSuccessfulResponse

Properties

Name Type Description Notes
response_id object ID запроса. [optional]
upload_successful UploadSuccessful

Example

from timeweb_cloud_api.models.upload_successful_response import UploadSuccessfulResponse

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

# convert the object into a dict
upload_successful_response_dict = upload_successful_response_instance.to_dict()
# create an instance of UploadSuccessfulResponse from a dict
upload_successful_response_form_dict = upload_successful_response.from_dict(upload_successful_response_dict)

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