Class: Quickfix::BidSwapPoints

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidSwapPoints

Returns a new instance of BidSwapPoints.



14280
14281
14282
14283
14284
14285
14286
# File 'lib/quickfix_fields.rb', line 14280

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