Class: Quickfix::MDEntryTime

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MDEntryTime

Returns a new instance of MDEntryTime.



5960
5961
5962
5963
5964
5965
5966
# File 'lib/quickfix_fields.rb', line 5960

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

Class Method Details

.fieldObject



5957
5958
5959
# File 'lib/quickfix_fields.rb', line 5957

def MDEntryTime.field
	return 273
end