Class: Quickfix::UnderlyingEventMonthYear

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UnderlyingEventMonthYear

Returns a new instance of UnderlyingEventMonthYear.



40176
40177
40178
40179
40180
40181
40182
# File 'lib/quickfix_fields.rb', line 40176

def initialize(data = nil)
  if( data == nil )
    super(2342)
  else
    super(2342, data)
  end
end