Class: Quickfix::DerivativeMaturityTime

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ DerivativeMaturityTime

Returns a new instance of DerivativeMaturityTime.



16646
16647
16648
16649
16650
16651
16652
# File 'lib/quickfix_fields.rb', line 16646

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