Class: Quickfix::ResetSeqNumFlag

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

Returns a new instance of ResetSeqNumFlag.



422
423
424
425
426
427
428
# File 'lib/quickfix_fields.rb', line 422

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

Class Method Details

.fieldObject



419
420
421
# File 'lib/quickfix_fields.rb', line 419

def ResetSeqNumFlag.field
  return 141
end