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