Class: Quickfix::IndividualAllocType

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

Returns a new instance of IndividualAllocType.



13370
13371
13372
13373
13374
13375
13376
# File 'lib/quickfix_fields.rb', line 13370

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

Class Method Details

.fieldObject



13367
13368
13369
# File 'lib/quickfix_fields.rb', line 13367

def IndividualAllocType.field
  return 992
end