ConsentRequest
Properties
Name |
Type |
Description |
Notes |
request_id |
str |
a nonce, unique for each HTTP request. |
|
timestamp |
datetime |
Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ |
|
consent |
ConsentRequestConsent |
|
|
Example
from abdm.models.consent_request import ConsentRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ConsentRequest from a JSON string
consent_request_instance = ConsentRequest.from_json(json)
# print the JSON string representation of the object
print(ConsentRequest.to_json())
# convert the object into a dict
consent_request_dict = consent_request_instance.to_dict()
# create an instance of ConsentRequest from a dict
consent_request_from_dict = ConsentRequest.from_dict(consent_request_dict)
[Back to Model list] [Back to API list] [Back to README]