Class: Quickfix::TerminatedIndicator

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BoolField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TerminatedIndicator

Returns a new instance of TerminatedIndicator.



40410
40411
40412
40413
40414
40415
40416
# File 'lib/quickfix_fields.rb', line 40410

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

Class Method Details

.fieldObject



40407
40408
40409
# File 'lib/quickfix_fields.rb', line 40407

def TerminatedIndicator.field
  return 2101
end