Class: Quickfix::TradeMatchTimestamp

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeStampField

#<, #==, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ TradeMatchTimestamp

Returns a new instance of TradeMatchTimestamp.



24706
24707
24708
24709
24710
24711
24712
# File 'lib/quickfix_fields.rb', line 24706

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

Class Method Details

.fieldObject



24703
24704
24705
# File 'lib/quickfix_fields.rb', line 24703

def TradeMatchTimestamp.field
  return 1888
end