Class: Quickfix::BidSize

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidSize

Returns a new instance of BidSize.



19077
19078
19079
19080
19081
19082
19083
# File 'lib/quickfix_fields.rb', line 19077

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

Class Method Details

.fieldObject



19074
19075
19076
# File 'lib/quickfix_fields.rb', line 19074

def BidSize.field
	return 134
end