Class: Quickfix::UnderlyingEventMonthYear

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

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

Class Method Details

.fieldObject



40173
40174
40175
# File 'lib/quickfix_fields.rb', line 40173

def UnderlyingEventMonthYear.field
  return 2342
end