Class: Quickfix::ApplNewSeqNum

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ApplNewSeqNum

Returns a new instance of ApplNewSeqNum.



18622
18623
18624
18625
18626
18627
18628
# File 'lib/quickfix_fields.rb', line 18622

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