Class: Quickfix::DiscretionOffsetType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DiscretionOffsetType

Returns a new instance of DiscretionOffsetType.



11420
11421
11422
11423
11424
11425
11426
# File 'lib/quickfix_fields.rb', line 11420

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