Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.4 KB

PatientStatusNotification.md

File metadata and controls

33 lines (24 loc) · 1.4 KB

PatientStatusNotification

Properties

Name Type Description Notes
request_id str a nonce, unique for each HTTP request
timestamp datetime Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ
acknowledgment PatientAuthNotificationAcknowledgementAcknowledgement
error Error [optional]
resp RequestReference [optional]

Example

from abdm.models.patient_status_notification import PatientStatusNotification

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

# convert the object into a dict
patient_status_notification_dict = patient_status_notification_instance.to_dict()
# create an instance of PatientStatusNotification from a dict
patient_status_notification_from_dict = PatientStatusNotification.from_dict(patient_status_notification_dict)

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