VariantResponse
Properties
Example
from odm_api.models.variant_response import VariantResponse
# TODO update the JSON string below
json = "{}"
# create an instance of VariantResponse from a JSON string
variant_response_instance = VariantResponse.from_json(json)
# print the JSON string representation of the object
print(VariantResponse.to_json())
# convert the object into a dict
variant_response_dict = variant_response_instance.to_dict()
# create an instance of VariantResponse from a dict
variant_response_from_dict = VariantResponse.from_dict(variant_response_dict)
[Back to Model list] [Back to API list] [Back to README]