Class: Quickfix::CouponDayCount

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

Returns a new instance of CouponDayCount.



25538
25539
25540
25541
25542
25543
25544
# File 'lib/quickfix_fields.rb', line 25538

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

Class Method Details

.fieldObject



25535
25536
25537
# File 'lib/quickfix_fields.rb', line 25535

def CouponDayCount.field
  return 1950
end