Class: Quickfix::SendingTime

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SendingTime

Returns a new instance of SendingTime.



18713
18714
18715
18716
18717
18718
18719
# File 'lib/quickfix_fields.rb', line 18713

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

Class Method Details

.fieldObject



18710
18711
18712
# File 'lib/quickfix_fields.rb', line 18710

def SendingTime.field
	return 52
end