Class: Quickfix::ExposureDuration

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ ExposureDuration

Returns a new instance of ExposureDuration.



20026
20027
20028
20029
20030
20031
20032
# File 'lib/quickfix_fields.rb', line 20026

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

Class Method Details

.fieldObject



20023
20024
20025
# File 'lib/quickfix_fields.rb', line 20023

def ExposureDuration.field
	return 1629
end