Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.33 KB

File metadata and controls

29 lines (20 loc) · 1.33 KB

SubscribeOrUnsubscribeUpdatePayload

Properties

Name Type Description Notes
subscribe bool `false` indicates that the user will no longer receive notifications for this specific threshold, whereas `true` signifies that the user will receive notification emails.

Example

from hyperstack.models.subscribe_or_unsubscribe_update_payload import SubscribeOrUnsubscribeUpdatePayload

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

# convert the object into a dict
subscribe_or_unsubscribe_update_payload_dict = subscribe_or_unsubscribe_update_payload_instance.to_dict()
# create an instance of SubscribeOrUnsubscribeUpdatePayload from a dict
subscribe_or_unsubscribe_update_payload_from_dict = SubscribeOrUnsubscribeUpdatePayload.from_dict(subscribe_or_unsubscribe_update_payload_dict)

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