Class: Quickfix::PriceMarkup

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

Returns a new instance of PriceMarkup.



76563
76564
76565
76566
76567
76568
76569
# File 'lib/quickfix_fields.rb', line 76563

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

Class Method Details

.fieldObject



76560
76561
76562
# File 'lib/quickfix_fields.rb', line 76560

def PriceMarkup.field
	return 2762
end