Class: Quickfix::DiscretionOffsetValue

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

Class Method Details

.fieldObject



8986
8987
8988
# File 'lib/quickfix_fields.rb', line 8986

def DiscretionOffsetValue.field
  return 389
end