Class: SparkApi::Models::AccountReport
- Defined in:
- lib/spark_api/models/account_report.rb
Constant Summary
Constants inherited from Account
SparkApi::Models::Account::SUBELEMENTS
Constants included from Paginate
Instance Attribute Summary
Attributes inherited from Base
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Account
by_office, #initialize, #logo, my, #my_account?, #primary_img, #save, #save!
Methods included from Finders
#find, #find_one, #first, #last
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::Account
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class SparkApi::Models::Base
Class Method Details
.report(account_id, arguments = {}) ⇒ Object
4 5 6 |
# File 'lib/spark_api/models/account_report.rb', line 4 def self.report(account_id, arguments={}) collect(connection.get("/accounts/#{account_id}/report", arguments)).first end |
Instance Method Details
#DisplayName ⇒ Object
8 9 10 |
# File 'lib/spark_api/models/account_report.rb', line 8 def DisplayName self.Name end |
#primary_email ⇒ Object
12 13 14 15 16 |
# File 'lib/spark_api/models/account_report.rb', line 12 def primary_email if Array(emails).any? && emails.primary emails.primary.Address end end |
#primary_phone ⇒ Object
18 19 20 21 22 |
# File 'lib/spark_api/models/account_report.rb', line 18 def primary_phone if Array(phones).any? && phones.primary phones.primary.Number end end |