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