Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.34 KB

HIPConsentNotificationNotification.md

File metadata and controls

32 lines (23 loc) · 1.34 KB

HIPConsentNotificationNotification

Properties

Name Type Description Notes
status ConsentStatus
consent_id str
consent_detail HIPConsentNotificationNotificationConsentDetail
signature str

Example

from abdm_gateway.models.hip_consent_notification_notification import HIPConsentNotificationNotification

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

# convert the object into a dict
hip_consent_notification_notification_dict = hip_consent_notification_notification_instance.to_dict()
# create an instance of HIPConsentNotificationNotification from a dict
hip_consent_notification_notification_from_dict = HIPConsentNotificationNotification.from_dict(hip_consent_notification_notification_dict)

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