Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 995 Bytes

PatientAddress.md

File metadata and controls

32 lines (23 loc) · 995 Bytes

PatientAddress

Properties

Name Type Description Notes
line str [optional]
district str [optional]
state str [optional]
pincode str [optional]

Example

from abdm.models.patient_address import PatientAddress

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

# convert the object into a dict
patient_address_dict = patient_address_instance.to_dict()
# create an instance of PatientAddress from a dict
patient_address_from_dict = PatientAddress.from_dict(patient_address_dict)

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