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 | ConsentArtefactResponseConsent | [optional] | |
error | Error | [optional] | |
resp | RequestReference |
from abdm.models.consent_artefact_response import ConsentArtefactResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ConsentArtefactResponse from a JSON string
consent_artefact_response_instance = ConsentArtefactResponse.from_json(json)
# print the JSON string representation of the object
print(ConsentArtefactResponse.to_json())
# convert the object into a dict
consent_artefact_response_dict = consent_artefact_response_instance.to_dict()
# create an instance of ConsentArtefactResponse from a dict
consent_artefact_response_from_dict = ConsentArtefactResponse.from_dict(consent_artefact_response_dict)