Class: Quickfix::ValidUntilTime

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcTimeStampField

#<, #==, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ValidUntilTime

Returns a new instance of ValidUntilTime.



1501
1502
1503
1504
1505
1506
1507
# File 'lib/quickfix_fields.rb', line 1501

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

Class Method Details

.fieldObject



1498
1499
1500
# File 'lib/quickfix_fields.rb', line 1498

def ValidUntilTime.field
	return 62
end