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