Class: Quickfix::NoUnderlyingAdditionalTerms

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

Returns a new instance of NoUnderlyingAdditionalTerms.



58298
58299
58300
58301
58302
58303
58304
# File 'lib/quickfix_fields.rb', line 58298

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

Class Method Details

.fieldObject



58295
58296
58297
# File 'lib/quickfix_fields.rb', line 58295

def NoUnderlyingAdditionalTerms.field
  return 42036
end