Class: Levelup::Requests::GetUser
- Inherits:
-
Base
- Object
- Templates::DataParcel
- Base
- Levelup::Requests::GetUser
- Includes:
- Templates::UserAuthenticated
- Defined in:
- lib/levelup/requests/get_user.rb
Overview
Represents a request to get information about a user. User access token must have the read_user_basic_info permission.
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes included from Templates::UserAuthenticated
Instance Method Summary collapse
Methods included from Templates::UserAuthenticated
Methods inherited from Base
#auth_type, #headers, instance_variables_excluded_from_hash, #send_to_api
Methods inherited from Templates::DataParcel
excluded?, #initialize, instance_variables_excluded_from_hash
Constructor Details
This class inherits a constructor from Levelup::Templates::DataParcel
Instance Method Details
#body ⇒ Object
8 9 10 |
# File 'lib/levelup/requests/get_user.rb', line 8 def body {} end |
#response_from_hash(hash) ⇒ Object
12 13 14 |
# File 'lib/levelup/requests/get_user.rb', line 12 def response_from_hash(hash) Responses::Success.new(hash['user']) end |