Class: Quickfix::UnderlyingSettleOnOpenFlag

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) ⇒ UnderlyingSettleOnOpenFlag

Returns a new instance of UnderlyingSettleOnOpenFlag.



26305
26306
26307
26308
26309
26310
26311
# File 'lib/quickfix_fields.rb', line 26305

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

Class Method Details

.fieldObject



26302
26303
26304
# File 'lib/quickfix_fields.rb', line 26302

def UnderlyingSettleOnOpenFlag.field
  return 2009
end