Class: Quickfix::TransBkdTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TransBkdTime

Returns a new instance of TransBkdTime.



6675
6676
6677
6678
6679
6680
6681
# File 'lib/quickfix_fields.rb', line 6675

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