Class: Quickfix::OfferSize

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ OfferSize

Returns a new instance of OfferSize.



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

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

Class Method Details

.fieldObject



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

def OfferSize.field
	return 135
end