Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 898 Bytes

File metadata and controls

28 lines (20 loc) · 898 Bytes

SchemasMeta

Properties

Name Type Description Notes
total object Число элементов в результате

Example

from timeweb_cloud_api.models.schemas_meta import SchemasMeta

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

# convert the object into a dict
schemas_meta_dict = schemas_meta_instance.to_dict()
# create an instance of SchemasMeta from a dict
schemas_meta_form_dict = schemas_meta.from_dict(schemas_meta_dict)

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