PatientAuthNotificationAcknowledgement
Properties
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]