You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`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
fromhyperstack.models.subscribe_or_unsubscribe_update_payloadimportSubscribeOrUnsubscribeUpdatePayload# TODO update the JSON string belowjson="{}"# create an instance of SubscribeOrUnsubscribeUpdatePayload from a JSON stringsubscribe_or_unsubscribe_update_payload_instance=SubscribeOrUnsubscribeUpdatePayload.from_json(json)
# print the JSON string representation of the objectprint(SubscribeOrUnsubscribeUpdatePayload.to_json())
# convert the object into a dictsubscribe_or_unsubscribe_update_payload_dict=subscribe_or_unsubscribe_update_payload_instance.to_dict()
# create an instance of SubscribeOrUnsubscribeUpdatePayload from a dictsubscribe_or_unsubscribe_update_payload_from_dict=SubscribeOrUnsubscribeUpdatePayload.from_dict(subscribe_or_unsubscribe_update_payload_dict)