Class: Quickfix::OrigSendingTime

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ OrigSendingTime

Returns a new instance of OrigSendingTime.



11875
11876
11877
11878
11879
11880
11881
# File 'lib/quickfix_fields.rb', line 11875

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

Class Method Details

.fieldObject



11872
11873
11874
# File 'lib/quickfix_fields.rb', line 11872

def OrigSendingTime.field
  return 122
end