Class: SparkApi::Models::Portal
Constant Summary
Constants included from Paginate
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
Methods included from Finders
Methods included from Concerns::Savable
#create!, #params_for_save, #save, #save!, #update!, #update_attributes
Methods inherited from Base
connection, #connection, count, element_name, element_name=, first, get, #id, #initialize, #load, #method_missing, #parse_id, path, #path, #persisted?, prefix, prefix=, #resource_pluralized, #resource_uri, #respond_to?, #to_param, #to_partial_path
Methods included from Paginate
#collect, #paginate, #per_page
Methods included from Dirty
#changed, #changed?, #changed_attributes, #changes, #dirty_attributes, #previous_changes
Constructor Details
This class inherits a constructor from SparkApi::Models::Base
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class SparkApi::Models::Base
Class Method Details
Instance Method Details
#disable ⇒ Object
26 27 28 29 30 |
# File 'lib/spark_api/models/portal.rb', line 26 def disable attribute_will_change! "Enabled" @attributes['Enabled'] = false save end |
#enable ⇒ Object
20 21 22 23 24 |
# File 'lib/spark_api/models/portal.rb', line 20 def enable attribute_will_change! "Enabled" @attributes['Enabled'] = true save end |
#enabled? ⇒ Boolean
16 17 18 |
# File 'lib/spark_api/models/portal.rb', line 16 def enabled? @attributes['Enabled'] == true end |
#post_data ⇒ Object
32 |
# File 'lib/spark_api/models/portal.rb', line 32 def post_data; attributes end |