PatientAuthModeQueryRequestQueryRequester
Properties
Name |
Type |
Description |
Notes |
type |
str |
|
|
id |
str |
|
|
Example
from abdm.models.patient_auth_mode_query_request_query_requester import PatientAuthModeQueryRequestQueryRequester
# TODO update the JSON string below
json = "{}"
# create an instance of PatientAuthModeQueryRequestQueryRequester from a JSON string
patient_auth_mode_query_request_query_requester_instance = PatientAuthModeQueryRequestQueryRequester.from_json(json)
# print the JSON string representation of the object
print(PatientAuthModeQueryRequestQueryRequester.to_json())
# convert the object into a dict
patient_auth_mode_query_request_query_requester_dict = patient_auth_mode_query_request_query_requester_instance.to_dict()
# create an instance of PatientAuthModeQueryRequestQueryRequester from a dict
patient_auth_mode_query_request_query_requester_from_dict = PatientAuthModeQueryRequestQueryRequester.from_dict(patient_auth_mode_query_request_query_requester_dict)
[Back to Model list] [Back to API list] [Back to README]