Skip to content
This repository was archived by the owner on Feb 21, 2025. It is now read-only.

Latest commit

 

History

History
36 lines (28 loc) · 1.11 KB

File metadata and controls

36 lines (28 loc) · 1.11 KB

TreoStore

Properties

Name Type Description Notes
id str [optional]
deleted bool [optional]
name str
description str [optional]
package_id str [optional]
url str [optional]
status str [optional]
versions object [optional]
tags List[str] [optional]

Example

from clientapi_atrocore.models.treo_store import TreoStore

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

# convert the object into a dict
treo_store_dict = treo_store_instance.to_dict()
# create an instance of TreoStore from a dict
treo_store_form_dict = treo_store.from_dict(treo_store_dict)

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