Class: Quickfix::SideLastQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SideLastQty

Returns a new instance of SideLastQty.



2229
2230
2231
2232
2233
2234
2235
# File 'lib/quickfix_fields.rb', line 2229

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

Class Method Details

.fieldObject



2226
2227
2228
# File 'lib/quickfix_fields.rb', line 2226

def SideLastQty.field
	return 1009
end