Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.41 KB

SubscriptionApprovalNotificationNotification.md

File metadata and controls

31 lines (22 loc) · 1.41 KB

SubscriptionApprovalNotificationNotification

Properties

Name Type Description Notes
subscription_request_id str [optional]
status SubscriptionStatus
subscription HIUSubscription [optional]

Example

from abdm.models.subscription_approval_notification_notification import SubscriptionApprovalNotificationNotification

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

# convert the object into a dict
subscription_approval_notification_notification_dict = subscription_approval_notification_notification_instance.to_dict()
# create an instance of SubscriptionApprovalNotificationNotification from a dict
subscription_approval_notification_notification_from_dict = SubscriptionApprovalNotificationNotification.from_dict(subscription_approval_notification_notification_dict)

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