Class: LunchMoney::Objects::Tag
- Defined in:
- lib/lunchmoney/objects/tag.rb
Overview
Instance Attribute Summary collapse
Attributes inherited from TagBase
Instance Method Summary collapse
Methods inherited from Object
Constructor Details
#initialize(id:, name:, archived:, description: nil) ⇒ void
17 18 19 20 21 |
# File 'lib/lunchmoney/objects/tag.rb', line 17 def initialize(id:, name:, archived:, description: nil) super(id:, name:) @archived = archived @description = description end |
Instance Attribute Details
#archived ⇒ Boolean
14 15 16 |
# File 'lib/lunchmoney/objects/tag.rb', line 14 def archived @archived end |
#description ⇒ String?
11 12 13 |
# File 'lib/lunchmoney/objects/tag.rb', line 11 def description @description end |