Class: Quickfix::PriorSettlPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PriorSettlPrice

Returns a new instance of PriorSettlPrice.



10055
10056
10057
10058
10059
10060
10061
# File 'lib/quickfix_fields.rb', line 10055

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