Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.19 KB

PatientIdentificationRequestQueryPatient.md

File metadata and controls

29 lines (20 loc) · 1.19 KB

PatientIdentificationRequestQueryPatient

Properties

Name Type Description Notes
id str

Example

from abdm.models.patient_identification_request_query_patient import PatientIdentificationRequestQueryPatient

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

# convert the object into a dict
patient_identification_request_query_patient_dict = patient_identification_request_query_patient_instance.to_dict()
# create an instance of PatientIdentificationRequestQueryPatient from a dict
patient_identification_request_query_patient_from_dict = PatientIdentificationRequestQueryPatient.from_dict(patient_identification_request_query_patient_dict)

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