Class: Quickfix::TradeNumber

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

Returns a new instance of TradeNumber.



61678
61679
61680
61681
61682
61683
61684
# File 'lib/quickfix_fields.rb', line 61678

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

Class Method Details

.fieldObject



61675
61676
61677
# File 'lib/quickfix_fields.rb', line 61675

def TradeNumber.field
  return 2490
end