Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

SplitOptions

Optional A/X split campaign options

Properties

Name Type Description Notes
optimize_for SplitOptimizationType [optional]
optimize_period_minutes int For how long should the results be measured until determining the winner template (content) [optional]

Example

from ElasticEmail.models.split_options import SplitOptions

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

# convert the object into a dict
split_options_dict = split_options_instance.to_dict()
# create an instance of SplitOptions from a dict
split_options_from_dict = SplitOptions.from_dict(split_options_dict)

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