Class: Quickfix::SettlPriceDeterminationMethod

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ SettlPriceDeterminationMethod

Returns a new instance of SettlPriceDeterminationMethod.



60729
60730
60731
60732
60733
60734
60735
# File 'lib/quickfix_fields.rb', line 60729

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

Class Method Details

.fieldObject



60726
60727
60728
# File 'lib/quickfix_fields.rb', line 60726

def SettlPriceDeterminationMethod.field
	return 2451
end