Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.28 KB

File metadata and controls

30 lines (21 loc) · 1.28 KB

PatientStatusNotificationNotification

Properties

Name Type Description Notes
status str
patient PatientStatusNotificationNotificationPatient

Example

from abdm_gateway.models.patient_status_notification_notification import PatientStatusNotificationNotification

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

# convert the object into a dict
patient_status_notification_notification_dict = patient_status_notification_notification_instance.to_dict()
# create an instance of PatientStatusNotificationNotification from a dict
patient_status_notification_notification_from_dict = PatientStatusNotificationNotification.from_dict(patient_status_notification_notification_dict)

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