V2reportsTypeMaterial
March 26, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type_label | str | [optional] | |
| type_display_text | str | [optional] |
Example
from ncbi.datasets.openapi.models.v2reports_type_material import V2reportsTypeMaterial
# TODO update the JSON string below
json = "{}"
# create an instance of V2reportsTypeMaterial from a JSON string
v2reports_type_material_instance = V2reportsTypeMaterial.from_json(json)
# print the JSON string representation of the object
print(V2reportsTypeMaterial.to_json())
# convert the object into a dict
v2reports_type_material_dict = v2reports_type_material_instance.to_dict()
# create an instance of V2reportsTypeMaterial from a dict
v2reports_type_material_from_dict = V2reportsTypeMaterial.from_dict(v2reports_type_material_dict)