Class: Quickfix::DiscretionOffset

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DiscretionOffset

Returns a new instance of DiscretionOffset.



4842
4843
4844
4845
4846
4847
4848
# File 'lib/quickfix_fields.rb', line 4842

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