class Authlete::Model::ServiceOwner
Attributes
Private Instance Methods
Source
# File lib/authlete/model/service-owner.rb, line 46 def defaults { number: 0, name: nil, email: nil, loginId: nil, apiKey: nil, apiSecret: nil, plan: nil } end
Source
# File lib/authlete/model/service-owner.rb, line 58 def set_params(hash) @number = hash[:number] @name = hash[:name] @email = hash[:email] @loginId = hash[:loginId] @apiKey = hash[:apiKey] @apiSecret = hash[:apiSecret] @plan = hash[:plan] end