Class: Quickfix::TradeVolType

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

Returns a new instance of TradeVolType.



23354
23355
23356
23357
23358
23359
23360
# File 'lib/quickfix_fields.rb', line 23354

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

Class Method Details

.fieldObject



23351
23352
23353
# File 'lib/quickfix_fields.rb', line 23351

def TradeVolType.field
  return 1786
end