Class: Quickfix::PreviouslyReported

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

Returns a new instance of PreviouslyReported.



7767
7768
7769
7770
7771
7772
7773
# File 'lib/quickfix_fields.rb', line 7767

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

Class Method Details

.fieldObject



7764
7765
7766
# File 'lib/quickfix_fields.rb', line 7764

def PreviouslyReported.field
  return 570
end