Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.57 KB

PatientAuthNotificationAcknowledgement.md

File metadata and controls

33 lines (24 loc) · 1.57 KB

PatientAuthNotificationAcknowledgement

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
acknowledgement PatientAuthNotificationAcknowledgementAcknowledgement [optional]
error Error [optional]
resp RequestReference

Example

from abdm.models.patient_auth_notification_acknowledgement import PatientAuthNotificationAcknowledgement

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

# convert the object into a dict
patient_auth_notification_acknowledgement_dict = patient_auth_notification_acknowledgement_instance.to_dict()
# create an instance of PatientAuthNotificationAcknowledgement from a dict
patient_auth_notification_acknowledgement_from_dict = PatientAuthNotificationAcknowledgement.from_dict(patient_auth_notification_acknowledgement_dict)

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