Class: LWS::Auth::Company
- Inherits:
-
Generic::Model
- Object
- Spyke::Base
- Generic::Model
- LWS::Auth::Company
- Defined in:
- lib/lws/apps/auth.rb
Overview
The company class
Instance Attribute Summary collapse
-
#accounts ⇒ Array<Account>
The accounts that are assigned to the company.
-
#activated ⇒ Boolean
Whether the company has been activated.
-
#address ⇒ String
The address of the company (at least 2 characters long).
-
#apps ⇒ Array<App>
The apps that are assigned to the company.
-
#city ⇒ String
The city of the company (at least 2 characters long).
-
#contact_person ⇒ Account
The contact person of the company.
-
#contact_person_id ⇒ Fixnum
The ID of the contact person of the company.
-
#contracts ⇒ Array<Contract>
The contracts of the company.
-
#country ⇒ String
The country of the company (at least 2 characters long).
-
#created_at ⇒ String
readonly
The timestamp of when the company was created.
-
#expire ⇒ Boolean
Whether the company is planned to be discontinued after the contract ends.
-
#id ⇒ Fixnum
readonly
The (unique) ID of the company.
-
#licenses ⇒ Array<License>
The licenses of the company.
-
#name ⇒ String
The name of the company (at least 2 characters long).
-
#number ⇒ String
The street address number of the company (at least 1 character long).
-
#parent ⇒ Company?
The parenty company.
-
#parent_id ⇒ Fixnum?
The ID of the parenty company.
-
#telephone_number ⇒ String
The telephone number of the company (at least 2 characters long).
-
#updated_at ⇒ String
readonly
The timestamp of when the company was last updated.
-
#usage_reports ⇒ Array<UsageReport>
The usage reports available/generated for the company.
-
#uuid ⇒ String
The UUID of the company.
-
#zip_code ⇒ String
The zip code of the company (at least 2 characters long).
Instance Attribute Details
#accounts ⇒ Array<Account>
Returns the accounts that are assigned to the company.
169 |
# File 'lib/lws/apps/auth.rb', line 169 has_many :accounts |
#activated ⇒ Boolean
Returns whether the company has been activated.
173 |
# File 'lib/lws/apps/auth.rb', line 173 attribute :activated |
#address ⇒ String
Returns the address of the company (at least 2 characters long).
182 |
# File 'lib/lws/apps/auth.rb', line 182 attribute :address |
#apps ⇒ Array<App>
Returns the apps that are assigned to the company.
177 |
# File 'lib/lws/apps/auth.rb', line 177 has_many :apps |
#city ⇒ String
Returns the city of the company (at least 2 characters long).
187 |
# File 'lib/lws/apps/auth.rb', line 187 attribute :city |
#contact_person ⇒ Account
Returns the contact person of the company.
191 192 193 |
# File 'lib/lws/apps/auth.rb', line 191 belongs_to :contact_person, class_name: "LWS::Auth::Account", foreign_key: :contact_person_id, uri: "accounts/:id" |
#contact_person_id ⇒ Fixnum
Returns the ID of the contact person of the company.
197 |
# File 'lib/lws/apps/auth.rb', line 197 attribute :contact_person_id |
#contracts ⇒ Array<Contract>
Returns the contracts of the company.
201 |
# File 'lib/lws/apps/auth.rb', line 201 has_many :contracts, uri: "companies/:company_id/contracts/(:id)" |
#country ⇒ String
Returns the country of the company (at least 2 characters long).
206 |
# File 'lib/lws/apps/auth.rb', line 206 attribute :country |
#created_at ⇒ String (readonly)
Returns the timestamp of when the company was created.
258 |
# File 'lib/lws/apps/auth.rb', line 258 attribute :created_at |
#expire ⇒ Boolean
Returns whether the company is planned to be discontinued after the contract ends.
211 |
# File 'lib/lws/apps/auth.rb', line 211 attribute :expire |
#id ⇒ Fixnum (readonly)
Returns the (unique) ID of the company.
165 |
# File 'lib/lws/apps/auth.rb', line 165 attribute :id |
#licenses ⇒ Array<License>
Returns the licenses of the company.
215 |
# File 'lib/lws/apps/auth.rb', line 215 has_many :licenses, uri: "companies/:company_id/licenses/(:id)" |
#name ⇒ String
Returns the name of the company (at least 2 characters long).
220 |
# File 'lib/lws/apps/auth.rb', line 220 attribute :name |
#number ⇒ String
Returns the street address number of the company (at least 1 character long).
225 |
# File 'lib/lws/apps/auth.rb', line 225 attribute :number |
#parent ⇒ Company?
Returns the parenty company.
229 230 231 |
# File 'lib/lws/apps/auth.rb', line 229 belongs_to :parent, class_name: "LWS::Auth::Company", foreign_key: :parent_id, uri: "companies/:id" |
#parent_id ⇒ Fixnum?
Returns the ID of the parenty company.
235 |
# File 'lib/lws/apps/auth.rb', line 235 attribute :parent_id |
#telephone_number ⇒ String
Returns the telephone number of the company (at least 2 characters long).
240 |
# File 'lib/lws/apps/auth.rb', line 240 attribute :telephone_number |
#updated_at ⇒ String (readonly)
Returns the timestamp of when the company was last updated.
262 |
# File 'lib/lws/apps/auth.rb', line 262 attribute :updated_at |
#usage_reports ⇒ Array<UsageReport>
Returns the usage reports available/generated for the company.
245 |
# File 'lib/lws/apps/auth.rb', line 245 has_many :usage_reports, uri: "companies/:company_id/reports/(:id)" |
#uuid ⇒ String
Returns the UUID of the company.
249 |
# File 'lib/lws/apps/auth.rb', line 249 attribute :uuid |
#zip_code ⇒ String
Returns the zip code of the company (at least 2 characters long).
254 |
# File 'lib/lws/apps/auth.rb', line 254 attribute :zip_code |