Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.01 KB

File metadata and controls

28 lines (20 loc) · 1.01 KB

ComponentsSchemasMeta

Properties

Name Type Description Notes
total object Общее количество сущностей

Example

from timeweb_cloud_api.models.components_schemas_meta import ComponentsSchemasMeta

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

# convert the object into a dict
components_schemas_meta_dict = components_schemas_meta_instance.to_dict()
# create an instance of ComponentsSchemasMeta from a dict
components_schemas_meta_form_dict = components_schemas_meta.from_dict(components_schemas_meta_dict)

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