Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.33 KB

HealthInformationNotificationNotificationNotifier.md

File metadata and controls

30 lines (21 loc) · 1.33 KB

HealthInformationNotificationNotificationNotifier

Properties

Name Type Description Notes
type str
id str

Example

from abdm.models.health_information_notification_notification_notifier import HealthInformationNotificationNotificationNotifier

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

# convert the object into a dict
health_information_notification_notification_notifier_dict = health_information_notification_notification_notifier_instance.to_dict()
# create an instance of HealthInformationNotificationNotificationNotifier from a dict
health_information_notification_notification_notifier_from_dict = HealthInformationNotificationNotificationNotifier.from_dict(health_information_notification_notification_notifier_dict)

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