Class: Quickfix::ExposureDuration

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

Instance Method Summary collapse

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