Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 872 Bytes

File metadata and controls

28 lines (20 loc) · 872 Bytes

ResourceType

Тип линкуемого ресурса

Properties

Name Type Description Notes

Example

from timeweb_cloud_api.models.resource_type import ResourceType

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

# convert the object into a dict
resource_type_dict = resource_type_instance.to_dict()
# create an instance of ResourceType from a dict
resource_type_form_dict = resource_type.from_dict(resource_type_dict)

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