Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.16 KB

File metadata and controls

30 lines (22 loc) · 1.16 KB

TriggerSet

Properties

Name Type Description Notes
query_pattern_triggers List[QueryPatternTrigger] Query pattern triggers.
selected_refinement_triggers List[SelectedRefinementTrigger] Selected refinement triggers.
custom_parameter_triggers List[CustomParameterTrigger] Custom parameter triggers.

Example

from gb_retailapi_client.models.trigger_set import TriggerSet

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

# convert the object into a dict
trigger_set_dict = trigger_set_instance.to_dict()
# create an instance of TriggerSet from a dict
trigger_set_form_dict = trigger_set.from_dict(trigger_set_dict)

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