| 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] |
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]