Class: Quickfix::LastUpfrontPrice

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ LastUpfrontPrice

Returns a new instance of LastUpfrontPrice.



22639
22640
22641
22642
22643
22644
22645
# File 'lib/quickfix_fields.rb', line 22639

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

Class Method Details

.fieldObject



22636
22637
22638
# File 'lib/quickfix_fields.rb', line 22636

def LastUpfrontPrice.field
	return 1743
end