Class: Quickfix::UpfrontPrice

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) ⇒ 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

Class Method Details

.fieldObject



22623
22624
22625
# File 'lib/quickfix_fields.rb', line 22623

def UpfrontPrice.field
	return 1742
end