Class: Quickfix::ClOrdID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClOrdID

Returns a new instance of ClOrdID.



1657
1658
1659
1660
1661
1662
1663
# File 'lib/quickfix_fields.rb', line 1657

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

Class Method Details

.fieldObject



1654
1655
1656
# File 'lib/quickfix_fields.rb', line 1654

def ClOrdID.field
	return 11
end