Class: MekariSso::AddUserCompany
- Defined in:
- lib/params/add_user_company.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#access_token ⇒ Object
Returns the value of attribute access_token.
-
#company_id ⇒ Object
Returns the value of attribute company_id.
-
#user_id ⇒ Object
Returns the value of attribute user_id.
Attributes inherited from Config
#accept_language, #base_url, #client_id, #client_secret
Instance Method Summary collapse
- #available_keys ⇒ Object
-
#initialize(options = nil) ⇒ AddUserCompany
constructor
A new instance of AddUserCompany.
- #validate_required! ⇒ Object
Methods inherited from Config
Constructor Details
#initialize(options = nil) ⇒ AddUserCompany
Returns a new instance of AddUserCompany.
9 10 11 |
# File 'lib/params/add_user_company.rb', line 9 def initialize( = nil) apply() if end |
Instance Attribute Details
#access_token ⇒ Object
Returns the value of attribute access_token.
7 8 9 |
# File 'lib/params/add_user_company.rb', line 7 def access_token @access_token end |
#company_id ⇒ Object
Returns the value of attribute company_id.
7 8 9 |
# File 'lib/params/add_user_company.rb', line 7 def company_id @company_id end |
#user_id ⇒ Object
Returns the value of attribute user_id.
7 8 9 |
# File 'lib/params/add_user_company.rb', line 7 def user_id @user_id end |
Instance Method Details
#available_keys ⇒ Object
13 14 15 |
# File 'lib/params/add_user_company.rb', line 13 def available_keys %i[company_id user_id access_token] end |
#validate_required! ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/params/add_user_company.rb', line 17 def validate_required! unless @company_id.present? raise ArgumentError, "Params company_id is required options" end unless @user_id.present? raise ArgumentError, "Params user_id is required options" end unless @access_token.present? raise ArgumentError, "Params access_token is required options" end end |