Properties
| Name |
Type |
Description |
Notes |
| key |
str |
|
[optional] |
| values |
List[str] |
|
[optional] |
Example
from odm_api.models.metainfo_key_for_summary import MetainfoKeyForSummary
# TODO update the JSON string below
json = "{}"
# create an instance of MetainfoKeyForSummary from a JSON string
metainfo_key_for_summary_instance = MetainfoKeyForSummary.from_json(json)
# print the JSON string representation of the object
print(MetainfoKeyForSummary.to_json())
# convert the object into a dict
metainfo_key_for_summary_dict = metainfo_key_for_summary_instance.to_dict()
# create an instance of MetainfoKeyForSummary from a dict
metainfo_key_for_summary_from_dict = MetainfoKeyForSummary.from_dict(metainfo_key_for_summary_dict)
[Back to Model list] [Back to API list] [Back to README]