Class: Quickfix::CouponRate

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CouponRate

Returns a new instance of CouponRate.



3269
3270
3271
3272
3273
3274
3275
# File 'lib/quickfix_fields.rb', line 3269

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