Class: Quickfix::DiscretionOffsetValue

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DiscretionOffsetValue

Returns a new instance of DiscretionOffsetValue.



8989
8990
8991
8992
8993
8994
8995
# File 'lib/quickfix_fields.rb', line 8989

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