Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

HIUSubscriptionNotificationEvent.md

File metadata and controls

33 lines (24 loc) · 1.38 KB

HIUSubscriptionNotificationEvent

Properties

Name Type Description Notes
id str
published datetime Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ
subscription_id str
category SubscriptionCategory
content HIUSubscriptionEventContent

Example

from abdm.models.hiu_subscription_notification_event import HIUSubscriptionNotificationEvent

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

# convert the object into a dict
hiu_subscription_notification_event_dict = hiu_subscription_notification_event_instance.to_dict()
# create an instance of HIUSubscriptionNotificationEvent from a dict
hiu_subscription_notification_event_from_dict = HIUSubscriptionNotificationEvent.from_dict(hiu_subscription_notification_event_dict)

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