Name | Type | Description | Notes |
---|---|---|---|
status | ConsentStatus | ||
consent_id | str | ||
consent_detail | HIPConsentNotificationNotificationConsentDetail | ||
signature | str |
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)