Class: Quickfix::CouponFrequencyPeriod

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

Returns a new instance of CouponFrequencyPeriod.



25512
25513
25514
25515
25516
25517
25518
# File 'lib/quickfix_fields.rb', line 25512

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

Class Method Details

.fieldObject



25509
25510
25511
# File 'lib/quickfix_fields.rb', line 25509

def CouponFrequencyPeriod.field
  return 1948
end