Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.16 KB

PatientAuthInitResponseAuth.md

File metadata and controls

31 lines (22 loc) · 1.16 KB

PatientAuthInitResponseAuth

Properties

Name Type Description Notes
transaction_id str
mode AuthenticationMode
meta AuthMeta [optional]

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]