Class: Quickfix::ListSeqNo

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ListSeqNo

Returns a new instance of ListSeqNo.



5700
5701
5702
5703
5704
5705
5706
# File 'lib/quickfix_fields.rb', line 5700

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

Class Method Details

.fieldObject



5697
5698
5699
# File 'lib/quickfix_fields.rb', line 5697

def ListSeqNo.field
	return 67
end