Class: AccountType
- Inherits:
-
Object
- Object
- AccountType
- Extended by:
- ActiveModel::Naming
- Includes:
- EnumField::DefineEnum
- Defined in:
- app/models/enums/account_type.rb
Instance Attribute Summary collapse
-
#code ⇒ Object
readonly
Returns the value of attribute code.
Instance Method Summary collapse
-
#initialize(code) ⇒ AccountType
constructor
A new instance of AccountType.
- #title ⇒ Object
Constructor Details
#initialize(code) ⇒ AccountType
Returns a new instance of AccountType.
9 10 11 |
# File 'app/models/enums/account_type.rb', line 9 def initialize(code) @code = code.to_sym end |
Instance Attribute Details
#code ⇒ Object (readonly)
Returns the value of attribute code.
7 8 9 |
# File 'app/models/enums/account_type.rb', line 7 def code @code end |
Instance Method Details
#title ⇒ Object
13 14 15 |
# File 'app/models/enums/account_type.rb', line 13 def title I18n.t(code, scope: [:account, :billing, :account_type]) end |