Class: Quickfix::EventTimePeriod

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ EventTimePeriod

Returns a new instance of EventTimePeriod.



23887
23888
23889
23890
23891
23892
23893
# File 'lib/quickfix_fields.rb', line 23887

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