Module: ZendeskAPI::Conditions

Included in:
Automation, Trigger, View
Defined in:
lib/zendesk_api/resources.rb

Instance Method Summary collapse

Instance Method Details

#add_all_condition(field, operator, value) ⇒ Object



497
498
499
500
501
# File 'lib/zendesk_api/resources.rb', line 497

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



503
504
505
506
507
# File 'lib/zendesk_api/resources.rb', line 503

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



487
488
489
490
# File 'lib/zendesk_api/resources.rb', line 487

def all_conditions=(all_conditions)
  self.conditions ||= {}
  self.conditions[:all] = all_conditions
end

#any_conditions=(any_conditions) ⇒ Object



492
493
494
495
# File 'lib/zendesk_api/resources.rb', line 492

def any_conditions=(any_conditions)
  self.conditions ||= {}
  self.conditions[:any] = any_conditions
end