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 ⇒ Integer
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).
-
#expire ⇒ Boolean
Whether the company is planned to be discontinued after the contract ends.
-
#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 ⇒ Integer?
The ID of the parenty company.
-
#password_expire ⇒ Integer
The number of days a password is valid for accounts of this company (0 is disabled).
-
#telephone_number ⇒ String
The telephone number of the company (at least 2 characters long).
-
#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).
Attributes inherited from Generic::Model
#created_at, #id, #updated_at, #url, #url_html
Method Summary
Methods inherited from Generic::Model
#deep_dup, #dig, #reload, #rollback, #save
Instance Attribute Details
#accounts ⇒ Array<Account>
Returns the accounts that are assigned to the company.
130 |
# File 'lib/lws/apps/auth.rb', line 130 has_many :accounts |
#activated ⇒ Boolean
Returns whether the company has been activated.
134 |
# File 'lib/lws/apps/auth.rb', line 134 attribute :activated |
#address ⇒ String
Returns the address of the company (at least 2 characters long).
143 |
# File 'lib/lws/apps/auth.rb', line 143 attribute :address |
#apps ⇒ Array<App>
Returns the apps that are assigned to the company.
138 |
# File 'lib/lws/apps/auth.rb', line 138 has_many :apps |
#city ⇒ String
Returns the city of the company (at least 2 characters long).
148 |
# File 'lib/lws/apps/auth.rb', line 148 attribute :city |
#contact_person ⇒ Account
Returns the contact person of the company.
152 153 154 |
# File 'lib/lws/apps/auth.rb', line 152 belongs_to :contact_person, class_name: "LWS::Auth::Account", foreign_key: :contact_person_id, uri: "accounts/:id" |
#contact_person_id ⇒ Integer
Returns the ID of the contact person of the company.
158 |
# File 'lib/lws/apps/auth.rb', line 158 attribute :contact_person_id |
#contracts ⇒ Array<Contract>
Returns the contracts of the company.
162 |
# File 'lib/lws/apps/auth.rb', line 162 has_many :contracts, uri: "companies/:company_id/contracts(/:id)" |
#country ⇒ String
Returns the country of the company (at least 2 characters long).
167 |
# File 'lib/lws/apps/auth.rb', line 167 attribute :country |
#expire ⇒ Boolean
Returns whether the company is planned to be discontinued after the contract ends.
172 |
# File 'lib/lws/apps/auth.rb', line 172 attribute :expire |
#licenses ⇒ Array<License>
Returns the licenses of the company.
176 |
# File 'lib/lws/apps/auth.rb', line 176 has_many :licenses, uri: "companies/:company_id/licenses(/:id)" |
#name ⇒ String
Returns the name of the company (at least 2 characters long).
181 |
# File 'lib/lws/apps/auth.rb', line 181 attribute :name |
#number ⇒ String
Returns the street address number of the company (at least 1 character long).
186 |
# File 'lib/lws/apps/auth.rb', line 186 attribute :number |
#parent ⇒ Company?
Returns the parenty company.
190 191 192 |
# File 'lib/lws/apps/auth.rb', line 190 belongs_to :parent, class_name: "LWS::Auth::Company", foreign_key: :parent_id, uri: "companies/:id" |
#parent_id ⇒ Integer?
Returns the ID of the parenty company.
196 |
# File 'lib/lws/apps/auth.rb', line 196 attribute :parent_id |
#password_expire ⇒ Integer
Returns the number of days a password is valid for accounts of this company (0 is disabled).
201 |
# File 'lib/lws/apps/auth.rb', line 201 attribute :password_expire |
#telephone_number ⇒ String
Returns the telephone number of the company (at least 2 characters long).
206 |
# File 'lib/lws/apps/auth.rb', line 206 attribute :telephone_number |
#usage_reports ⇒ Array<UsageReport>
Returns the usage reports available/generated for the company.
211 |
# File 'lib/lws/apps/auth.rb', line 211 has_many :usage_reports, uri: "companies/:company_id/reports(/:id)" |
#uuid ⇒ String
Returns the UUID of the company.
215 |
# File 'lib/lws/apps/auth.rb', line 215 attribute :uuid |
#zip_code ⇒ String
Returns the zip code of the company (at least 2 characters long).
220 |
# File 'lib/lws/apps/auth.rb', line 220 attribute :zip_code |