Class: Quickfix::UnderlyingComplexEventStartDate

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from UtcDateField

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

Constructor Details

#initialize(data = nil) ⇒ UnderlyingComplexEventStartDate

Returns a new instance of UnderlyingComplexEventStartDate.



26890
26891
26892
26893
26894
26895
26896
# File 'lib/quickfix_fields.rb', line 26890

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

Class Method Details

.fieldObject



26887
26888
26889
# File 'lib/quickfix_fields.rb', line 26887

def UnderlyingComplexEventStartDate.field
	return 2054
end