Skip to content

AccessionResponse

Properties

Name Type Description Notes
genestackaccession str

Example

from odm_api.models.accession_response import AccessionResponse

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

# convert the object into a dict
accession_response_dict = accession_response_instance.to_dict()
# create an instance of AccessionResponse from a dict
accession_response_from_dict = AccessionResponse.from_dict(accession_response_dict)
[Back to Model list] [Back to API list] [Back to README]