Class: Quickfix::RelativeValueSide

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

Returns a new instance of RelativeValueSide.



61912
61913
61914
61915
61916
61917
61918
# File 'lib/quickfix_fields.rb', line 61912

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

Class Method Details

.fieldObject



61909
61910
61911
# File 'lib/quickfix_fields.rb', line 61909

def RelativeValueSide.field
	return 2532
end