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