This is the response type returned by the Reopen customer sessions endpoint. It contains the rolled back effects.
| Name | Type | Description | Notes |
|---|---|---|---|
| effects | List[Effect] | The effects generated by the rules in your running campaigns. See API effects. |
from talon_one.models.reopen_session_response import ReopenSessionResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ReopenSessionResponse from a JSON string
reopen_session_response_instance = ReopenSessionResponse.from_json(json)
# print the JSON string representation of the object
print(ReopenSessionResponse.to_json())
# convert the object into a dict
reopen_session_response_dict = reopen_session_response_instance.to_dict()
# create an instance of ReopenSessionResponse from a dict
reopen_session_response_from_dict = ReopenSessionResponse.from_dict(reopen_session_response_dict)