ABDM-HIU-SDK

PatientAuthModeQueryResponseAuth

Properties

Name Type Description Notes
purpose PatientAuthPurpose    
modes List[AuthenticationMode]    

Example

from abdm.models.patient_auth_mode_query_response_auth import PatientAuthModeQueryResponseAuth

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

# convert the object into a dict
patient_auth_mode_query_response_auth_dict = patient_auth_mode_query_response_auth_instance.to_dict()
# create an instance of PatientAuthModeQueryResponseAuth from a dict
patient_auth_mode_query_response_auth_from_dict = PatientAuthModeQueryResponseAuth.from_dict(patient_auth_mode_query_response_auth_dict)

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