You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Date time format in UTC, includes miliseconds YYYY-MM-DDThh:mm:ss.vZ
consent_request_id
str
Example
fromabdm.models.consent_request_status_requestimportConsentRequestStatusRequest# TODO update the JSON string belowjson="{}"# create an instance of ConsentRequestStatusRequest from a JSON stringconsent_request_status_request_instance=ConsentRequestStatusRequest.from_json(json)
# print the JSON string representation of the objectprint(ConsentRequestStatusRequest.to_json())
# convert the object into a dictconsent_request_status_request_dict=consent_request_status_request_instance.to_dict()
# create an instance of ConsentRequestStatusRequest from a dictconsent_request_status_request_from_dict=ConsentRequestStatusRequest.from_dict(consent_request_status_request_dict)