Class: Quickfix::ReversalIndicator

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

Returns a new instance of ReversalIndicator.



9613
9614
9615
9616
9617
9618
9619
# File 'lib/quickfix_fields.rb', line 9613

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

Class Method Details

.fieldObject



9610
9611
9612
# File 'lib/quickfix_fields.rb', line 9610

def ReversalIndicator.field
  return 700
end