Class: Quickfix::BidSpotRate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ BidSpotRate

Returns a new instance of BidSpotRate.



11758
11759
11760
11761
11762
11763
11764
# File 'lib/quickfix_fields.rb', line 11758

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

Class Method Details

.fieldObject



11755
11756
11757
# File 'lib/quickfix_fields.rb', line 11755

def BidSpotRate.field
	return 188
end