Class: LunchMoney::Objects::User
- Defined in:
- lib/lunchmoney/objects/user.rb
Overview
Instance Attribute Summary collapse
- #account_id ⇒ Integer
- #api_key_label ⇒ String?
- #budget_name ⇒ String
- #user_email ⇒ String
- #user_id ⇒ Integer
- #user_name ⇒ String
Instance Method Summary collapse
Methods inherited from Object
Constructor Details
#initialize(user_id:, user_name:, user_email:, account_id:, budget_name:, primary_currency:, api_key_label: nil) ⇒ void
28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/lunchmoney/objects/user.rb', line 28 def initialize(user_id:, user_name:, user_email:, account_id:, budget_name:, primary_currency:, api_key_label: nil) super() @user_id = user_id @user_name = user_name @user_email = user_email @account_id = account_id @budget_name = budget_name @primary_currency = primary_currency @api_key_label = api_key_label end |
Instance Attribute Details
#account_id ⇒ Integer
9 10 11 |
# File 'lib/lunchmoney/objects/user.rb', line 9 def account_id @account_id end |
#api_key_label ⇒ String?
15 16 17 |
# File 'lib/lunchmoney/objects/user.rb', line 15 def api_key_label @api_key_label end |
#budget_name ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/user.rb', line 12 def budget_name @budget_name end |
#user_email ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/user.rb', line 12 def user_email @user_email end |
#user_id ⇒ Integer
9 10 11 |
# File 'lib/lunchmoney/objects/user.rb', line 9 def user_id @user_id end |
#user_name ⇒ String
12 13 14 |
# File 'lib/lunchmoney/objects/user.rb', line 12 def user_name @user_name end |