Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.09 KB

HIUSubscription.md

File metadata and controls

32 lines (23 loc) · 1.09 KB

HIUSubscription

Properties

Name Type Description Notes
id str
patient ConsentManagerPatientID
hiu OrganizationRepresentation
sources List[HIUSubscriptionContext]

Example

from abdm.models.hiu_subscription import HIUSubscription

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

# convert the object into a dict
hiu_subscription_dict = hiu_subscription_instance.to_dict()
# create an instance of HIUSubscription from a dict
hiu_subscription_from_dict = HIUSubscription.from_dict(hiu_subscription_dict)

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