| Name |
Type |
Description |
Notes |
| response_id |
object |
ID запроса. |
[optional] |
| meta |
Meta |
|
|
| images |
object |
|
|
from timeweb_cloud_api.models.images_out_response import ImagesOutResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ImagesOutResponse from a JSON string
images_out_response_instance = ImagesOutResponse.from_json(json)
# print the JSON string representation of the object
print ImagesOutResponse.to_json()
# convert the object into a dict
images_out_response_dict = images_out_response_instance.to_dict()
# create an instance of ImagesOutResponse from a dict
images_out_response_form_dict = images_out_response.from_dict(images_out_response_dict)
[Back to Model list] [Back to API list] [Back to README]