Class: Quickfix::UnderlyingCouponType

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) ⇒ UnderlyingCouponType

Returns a new instance of UnderlyingCouponType.



26045
26046
26047
26048
26049
26050
26051
# File 'lib/quickfix_fields.rb', line 26045

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

Class Method Details

.fieldObject



26042
26043
26044
# File 'lib/quickfix_fields.rb', line 26042

def UnderlyingCouponType.field
  return 1989
end