Class: Quickfix::UpfrontPrice

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ UpfrontPrice

Returns a new instance of UpfrontPrice.



22626
22627
22628
22629
22630
22631
22632
# File 'lib/quickfix_fields.rb', line 22626

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