Class: Quickfix::NewSeqNo

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NewSeqNo

Returns a new instance of NewSeqNo.



10770
10771
10772
10773
10774
10775
10776
# File 'lib/quickfix_fields.rb', line 10770

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

Class Method Details

.fieldObject



10767
10768
10769
# File 'lib/quickfix_fields.rb', line 10767

def NewSeqNo.field
  return 36
end