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