Class: Quickfix::UnderlyingReferenceEntityType

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

Returns a new instance of UnderlyingReferenceEntityType.



26188
26189
26190
26191
26192
26193
26194
# File 'lib/quickfix_fields.rb', line 26188

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

Class Method Details

.fieldObject



26185
26186
26187
# File 'lib/quickfix_fields.rb', line 26185

def UnderlyingReferenceEntityType.field
  return 2000
end