Properties
| Name |
Type |
Description |
Notes |
| item_id |
str |
|
[optional] [readonly] |
| metadata |
object |
|
[optional] |
| annotation |
object |
|
[optional] |
| reference_genome |
object |
|
[optional] |
Example
from odm_api.models.variant_metadata_with_id import VariantMetadataWithId
# TODO update the JSON string below
json = "{}"
# create an instance of VariantMetadataWithId from a JSON string
variant_metadata_with_id_instance = VariantMetadataWithId.from_json(json)
# print the JSON string representation of the object
print(VariantMetadataWithId.to_json())
# convert the object into a dict
variant_metadata_with_id_dict = variant_metadata_with_id_instance.to_dict()
# create an instance of VariantMetadataWithId from a dict
variant_metadata_with_id_from_dict = VariantMetadataWithId.from_dict(variant_metadata_with_id_dict)
[Back to Model list] [Back to API list] [Back to README]