Class: Quickfix::SideQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideQty

Returns a new instance of SideQty.



9301
9302
9303
9304
9305
9306
9307
# File 'lib/quickfix_fields.rb', line 9301

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

Class Method Details

.fieldObject



9298
9299
9300
# File 'lib/quickfix_fields.rb', line 9298

def SideQty.field
	return 1009
end