PatientIdentificationResponse
Properties
Example
from abdm.models.patient_identification_response import PatientIdentificationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PatientIdentificationResponse from a JSON string
patient_identification_response_instance = PatientIdentificationResponse.from_json(json)
# print the JSON string representation of the object
print(PatientIdentificationResponse.to_json())
# convert the object into a dict
patient_identification_response_dict = patient_identification_response_instance.to_dict()
# create an instance of PatientIdentificationResponse from a dict
patient_identification_response_from_dict = PatientIdentificationResponse.from_dict(patient_identification_response_dict)
[Back to Model list] [Back to API list] [Back to README]