Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.41 KB

HIUConsentNotificationResponse.md

File metadata and controls

33 lines (24 loc) · 1.41 KB

HIUConsentNotificationResponse

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
acknowledgement List[ConsentAcknowledgement] [optional]
error Error [optional]
resp RequestReference

Example

from abdm.models.hiu_consent_notification_response import HIUConsentNotificationResponse

# TODO update the JSON string below
json = "{}"
# create an instance of HIUConsentNotificationResponse from a JSON string
hiu_consent_notification_response_instance = HIUConsentNotificationResponse.from_json(json)
# print the JSON string representation of the object
print(HIUConsentNotificationResponse.to_json())

# convert the object into a dict
hiu_consent_notification_response_dict = hiu_consent_notification_response_instance.to_dict()
# create an instance of HIUConsentNotificationResponse from a dict
hiu_consent_notification_response_from_dict = HIUConsentNotificationResponse.from_dict(hiu_consent_notification_response_dict)

[Back to Model list] [Back to API list] [Back to README]