ABDM-HIU-SDK

EventCategoryDetail

Properties

Name Type Description Notes
care_context CareContextDefinition    
hi_types List[HITypeEnum]    

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]