Class: OrderNotificationType

Inherits:
Object
  • Object
show all
Includes:
EnumField::DefineEnum
Defined in:
app/models/enums/order_notification_type.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(code) ⇒ OrderNotificationType

Returns a new instance of OrderNotificationType.



8
9
10
# File 'app/models/enums/order_notification_type.rb', line 8

def initialize(code)
  @code = code.to_sym
end

Instance Attribute Details

#codeObject (readonly)

Returns the value of attribute code.



6
7
8
# File 'app/models/enums/order_notification_type.rb', line 6

def code
  @code
end

Instance Method Details

#title(options = {}) ⇒ Object



12
13
14
# File 'app/models/enums/order_notification_type.rb', line 12

def title(options = {})
  I18n.t(code, options.merge(scope: [:account, :notification_type]))
end