| 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. |
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)