Class: LunchMoney::Calls::Users
- Defined in:
- lib/lunchmoney/calls/users.rb
Overview
https://lunchmoney.dev/#user
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
Methods inherited from Base
Constructor Details
This class inherits a constructor from LunchMoney::Calls::Base
Instance Method Details
#me ⇒ LunchMoney::Objects::User, LunchMoney::Errors
11 12 13 14 15 16 17 |
# File 'lib/lunchmoney/calls/users.rb', line 11 def me response = get("me") handle_api_response(response) do |body| LunchMoney::Objects::User.new(**body) end end |