ABDM-HIU-SDK

HealthInformationNotificationNotification

Properties

Name Type Description Notes
consent_id str    
transaction_id str    
done_at datetime    
notifier HealthInformationNotificationNotificationNotifier    
status_notification HealthInformationNotificationNotificationStatusNotification    

Example

from abdm.models.health_information_notification_notification import HealthInformationNotificationNotification

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

# convert the object into a dict
health_information_notification_notification_dict = health_information_notification_notification_instance.to_dict()
# create an instance of HealthInformationNotificationNotification from a dict
health_information_notification_notification_from_dict = HealthInformationNotificationNotification.from_dict(health_information_notification_notification_dict)

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