A page on the IGVF portal.
| Name | Type | Description | Notes |
|---|---|---|---|
| release_timestamp | str | The date the object was released. | [optional] |
| lab | str | Lab associated with the submission. | [optional] |
| award | str | Grant associated with the submission. | [optional] |
| status | str | The status of the metadata object. | [optional] |
| schema_version | str | The version of the JSON schema that the server uses to validate the object. | [optional] |
| uuid | str | The unique identifier associated with every object. | [optional] |
| notes | str | DACC internal notes. | [optional] |
| aliases | List[str] | Lab specific identifiers to reference an object. | [optional] |
| creation_timestamp | str | The date the object was created. | [optional] |
| submitted_by | str | The user who submitted the object. | [optional] |
| submitter_comment | str | Additional information specified by the submitter to be displayed as a comment on the portal. | [optional] |
| description | str | A plain text description of the object. | [optional] |
| parent | str | The parent page associated with this page. | [optional] |
| name | str | The name shown in this page's URL. | [optional] |
| title | str | The name shown in the browser's title bar and tabs. | [optional] |
| layout | PageLayout | [optional] | |
| id | str | [optional] | |
| type | List[str] | [optional] | |
| summary | str | A summary of the object. | [optional] |
| canonical_uri | str | The path of the page. | [optional] |
from igvf_client.models.page import Page
# TODO update the JSON string below
json = "{}"
# create an instance of Page from a JSON string
page_instance = Page.from_json(json)
# print the JSON string representation of the object
print(Page.to_json())
# convert the object into a dict
page_dict = page_instance.to_dict()
# create an instance of Page from a dict
page_from_dict = Page.from_dict(page_dict)