Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

HIUSubscriptionEventContent

Properties

Name Type Description Notes
patient ConsentManagerPatientID
hip OrganizationRepresentation
context List[EventCategoryDetail]

Example

from abdm.models.hiu_subscription_event_content import HIUSubscriptionEventContent

# TODO update the JSON string below
json = "{}"
# create an instance of HIUSubscriptionEventContent from a JSON string
hiu_subscription_event_content_instance = HIUSubscriptionEventContent.from_json(json)
# print the JSON string representation of the object
print(HIUSubscriptionEventContent.to_json())

# convert the object into a dict
hiu_subscription_event_content_dict = hiu_subscription_event_content_instance.to_dict()
# create an instance of HIUSubscriptionEventContent from a dict
hiu_subscription_event_content_from_dict = HIUSubscriptionEventContent.from_dict(hiu_subscription_event_content_dict)

[Back to Model list] [Back to API list] [Back to README]