Class: Quickfix::TransactTime

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransactTime

Returns a new instance of TransactTime.



13097
13098
13099
13100
13101
13102
13103
# File 'lib/quickfix_fields.rb', line 13097

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

Class Method Details

.fieldObject



13094
13095
13096
# File 'lib/quickfix_fields.rb', line 13094

def TransactTime.field
	return 60
end