Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.03 KB

EventCategoryDetail.md

File metadata and controls

30 lines (21 loc) · 1.03 KB

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]