Class: Quickfix::TransactTime
- Inherits:
-
UtcTimeStampField
- Object
- UtcTimeStampField
- Quickfix::TransactTime
- Defined in:
- lib/quickfix_fields.rb
Instance Method Summary collapse
-
#initialize(data = nil) ⇒ TransactTime
constructor
A new instance of TransactTime.
Constructor Details
#initialize(data = nil) ⇒ TransactTime
Returns a new instance of TransactTime.
1475 1476 1477 1478 1479 1480 1481 |
# File 'lib/quickfix_fields.rb', line 1475 def initialize(data = nil) if( data == nil ) super(60) else super(60, data) end end |