ABDM-HIU-SDK

PatientIdentificationResponsePatient

Properties

Name Type Description Notes
id str    
name str    

Example

from abdm.models.patient_identification_response_patient import PatientIdentificationResponsePatient

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

# convert the object into a dict
patient_identification_response_patient_dict = patient_identification_response_patient_instance.to_dict()
# create an instance of PatientIdentificationResponsePatient from a dict
patient_identification_response_patient_from_dict = PatientIdentificationResponsePatient.from_dict(patient_identification_response_patient_dict)

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