EventCategoryDetail
Properties
Example
from abdm.models.event_category_detail import EventCategoryDetail
# TODO update the JSON string below
json = "{}"
# create an instance of EventCategoryDetail from a JSON string
event_category_detail_instance = EventCategoryDetail.from_json(json)
# print the JSON string representation of the object
print(EventCategoryDetail.to_json())
# convert the object into a dict
event_category_detail_dict = event_category_detail_instance.to_dict()
# create an instance of EventCategoryDetail from a dict
event_category_detail_from_dict = EventCategoryDetail.from_dict(event_category_detail_dict)
[Back to Model list] [Back to API list] [Back to README]