Class: Quickfix::OpenCloseSettleFlag

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OpenCloseSettleFlag

Returns a new instance of OpenCloseSettleFlag.



3607
3608
3609
3610
3611
3612
3613
# File 'lib/quickfix_fields.rb', line 3607

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