Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1009 Bytes

File metadata and controls

29 lines (21 loc) · 1009 Bytes

ResourcesResponse

Properties

Name Type Description Notes
response_id object ID запроса [optional]
resources Resources

Example

from timeweb_cloud_api.models.resources_response import ResourcesResponse

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

# convert the object into a dict
resources_response_dict = resources_response_instance.to_dict()
# create an instance of ResourcesResponse from a dict
resources_response_form_dict = resources_response.from_dict(resources_response_dict)

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