Class: Quickfix::TimeToExpiration

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ TimeToExpiration

Returns a new instance of TimeToExpiration.



15853
15854
15855
15856
15857
15858
15859
# File 'lib/quickfix_fields.rb', line 15853

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