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