Class: Quickfix::DefBidSize

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DefBidSize

Returns a new instance of DefBidSize.



9340
9341
9342
9343
9344
9345
9346
# File 'lib/quickfix_fields.rb', line 9340

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

Class Method Details

.fieldObject



9337
9338
9339
# File 'lib/quickfix_fields.rb', line 9337

def DefBidSize.field
	return 293
end