Class: Quickfix::TradeQtyType

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

Returns a new instance of TradeQtyType.



24134
24135
24136
24137
24138
24139
24140
# File 'lib/quickfix_fields.rb', line 24134

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

Class Method Details

.fieldObject



24131
24132
24133
# File 'lib/quickfix_fields.rb', line 24131

def TradeQtyType.field
  return 1842
end