Class: ZendeskAPI::View

Inherits:
Rule show all
Includes:
Conditions
Defined in:
lib/zendesk_api/resources.rb

Instance Attribute Summary

Attributes inherited from DataResource

#error, #error_message

Attributes inherited from Data

#association, #attributes, #errors, #response

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Conditions

#add_all_condition, #add_any_condition, #all_conditions=, #any_conditions=

Methods included from Destroy

#destroy, #destroy!, #destroyed?, included

Methods included from Update

included

Methods included from Save

#clear_associations, #save, #save!, #save_associations

Methods included from ResponseHandler

#handle_response

Methods included from Create

included

Methods included from Read

included, #reload!

Methods included from Sideloading

included, #set_includes

Methods included from Verbs

#any, #delete, #post, #put

Methods inherited from Data

#==, #id, inherited, #initialize, #loaded_associations, #method_missing, namespace, new_from_response, #new_record?, #path, resource_name, resource_path, #respond_to_missing?, singular_resource_name, subclasses, #to_json, #to_s

Methods included from Associations

included, #wrap_resource

Constructor Details

This class inherits a constructor from ZendeskAPI::Data

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class ZendeskAPI::Data

Class Method Details

.preview(client, options = {}) ⇒ Object



539
540
541
# File 'lib/zendesk_api/resources.rb', line 539

def self.preview(client, options = {})
  Collection.new(client, ViewRow, options.merge(:path => "views/preview", :verb => :post))
end

Instance Method Details

#add_column(column) ⇒ Object



528
529
530
531
532
# File 'lib/zendesk_api/resources.rb', line 528

def add_column(column)
  columns = execution.columns.map(&:id)
  columns << column
  self.columns = columns
end

#columns=(columns) ⇒ Object



534
535
536
537
# File 'lib/zendesk_api/resources.rb', line 534

def columns=(columns)
  self.output ||= {}
  self.output[:columns] = columns
end