Class: Quickfix::NoTradeQtys

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

Returns a new instance of NoTradeQtys.



24121
24122
24123
24124
24125
24126
24127
# File 'lib/quickfix_fields.rb', line 24121

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

Class Method Details

.fieldObject



24118
24119
24120
# File 'lib/quickfix_fields.rb', line 24118

def NoTradeQtys.field
  return 1841
end