Class: Quickfix::TimeToExpiration

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



15850
15851
15852
# File 'lib/quickfix_fields.rb', line 15850

def TimeToExpiration.field
  return 1189
end