Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.22 KB

File metadata and controls

30 lines (21 loc) · 1.22 KB

ReopenSessionResponse

This is the response type returned by the Reopen customer sessions endpoint. It contains the rolled back effects.

Properties

Name Type Description Notes
effects List[Effect] The effects generated by the rules in your running campaigns. See API effects.

Example

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)

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