Class: Quickfix::EventMonthYear

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EventMonthYear

Returns a new instance of EventMonthYear.



40150
40151
40152
40153
40154
40155
40156
# File 'lib/quickfix_fields.rb', line 40150

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