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
599 600 601 602 603 |
# File 'lib/zendesk_api/resources.rb', line 599 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
605 606 607 608 609 |
# File 'lib/zendesk_api/resources.rb', line 605 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
589 590 591 592 |
# File 'lib/zendesk_api/resources.rb', line 589 def all_conditions=(all_conditions) self.conditions ||= {} self.conditions[:all] = all_conditions end |
#any_conditions=(any_conditions) ⇒ Object
594 595 596 597 |
# File 'lib/zendesk_api/resources.rb', line 594 def any_conditions=(any_conditions) self.conditions ||= {} self.conditions[:any] = any_conditions end |