Class: Quickfix::IOIQty

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ IOIQty

Returns a new instance of IOIQty.



8378
8379
8380
8381
8382
8383
8384
# File 'lib/quickfix_fields.rb', line 8378

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

Class Method Details

.fieldObject



8375
8376
8377
# File 'lib/quickfix_fields.rb', line 8375

def IOIQty.field
  return 27
end