Class: Quickfix::UnderlyingCouponType

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ 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