Module: ZendeskAPI::Conditions
- Included in:
- Automation, Trigger, View
- Defined in:
- lib/zendesk_api/resources.rb
Instance Method Summary collapse
- #add_all_condition(field, operator, value) ⇒ Object
- #add_any_condition(field, operator, value) ⇒ Object
- #all_conditions=(all_conditions) ⇒ Object
- #any_conditions=(any_conditions) ⇒ Object
Instance Method Details
#add_all_condition(field, operator, value) ⇒ Object
591 592 593 594 595 |
# File 'lib/zendesk_api/resources.rb', line 591 def add_all_condition(field, operator, value) self.conditions ||= {} self.conditions[:all] ||= [] self.conditions[:all] << { :field => field, :operator => operator, :value => value } end |
#add_any_condition(field, operator, value) ⇒ Object
597 598 599 600 601 |
# File 'lib/zendesk_api/resources.rb', line 597 def add_any_condition(field, operator, value) self.conditions ||= {} self.conditions[:any] ||= [] self.conditions[:any] << { :field => field, :operator => operator, :value => value } end |
#all_conditions=(all_conditions) ⇒ Object
581 582 583 584 |
# File 'lib/zendesk_api/resources.rb', line 581 def all_conditions=(all_conditions) self.conditions ||= {} self.conditions[:all] = all_conditions end |
#any_conditions=(any_conditions) ⇒ Object
586 587 588 589 |
# File 'lib/zendesk_api/resources.rb', line 586 def any_conditions=(any_conditions) self.conditions ||= {} self.conditions[:any] = any_conditions end |