V2reportsGeneticCode
July 11, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | [optional] | |
| name | str | [optional] |
Example
from ncbi.datasets.openapi.models.v2reports_genetic_code import V2reportsGeneticCode
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsGeneticCode from a JSON string
v2reports_genetic_code_instance = V2reportsGeneticCode.from_json(json)
# print the JSON string representation of the object
print(V2reportsGeneticCode.to_json())
# convert the object into a dict
v2reports_genetic_code_dict = v2reports_genetic_code_instance.to_dict()
# create an instance of V2reportsGeneticCode from a dict
v2reports_genetic_code_from_dict = V2reportsGeneticCode.from_dict(v2reports_genetic_code_dict)