RGItem
Properties
| Name |
Type |
Description |
Notes |
| genestackaccession |
str |
|
[optional] |
| annotation_url |
str |
|
[optional] |
| organism |
str |
|
[optional] |
| assembly |
str |
|
[optional] |
| release |
str |
|
[optional] |
| name |
str |
|
[optional] |
| initialization_status |
str |
|
[optional] |
| created_at |
str |
|
[optional] |
| owner_email |
str |
|
[optional] |
Example
from odm_api.models.rg_item import RGItem
# TODO update the JSON string below
json = "{}"
# create an instance of RGItem from a JSON string
rg_item_instance = RGItem.from_json(json)
# print the JSON string representation of the object
print(RGItem.to_json())
# convert the object into a dict
rg_item_dict = rg_item_instance.to_dict()
# create an instance of RGItem from a dict
rg_item_from_dict = RGItem.from_dict(rg_item_dict)
[Back to Model list] [Back to API list] [Back to README]