Class: Quickfix::SideQty

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SideQty

Returns a new instance of SideQty.



13565
13566
13567
13568
13569
13570
13571
# File 'lib/quickfix_fields.rb', line 13565

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

Class Method Details

.fieldObject



13562
13563
13564
# File 'lib/quickfix_fields.rb', line 13562

def SideQty.field
	return 1009
end