Class: Quickfix::MaturityMonthYearIncrementUnits

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

Returns a new instance of MaturityMonthYearIncrementUnits.



17283
17284
17285
17286
17287
17288
17289
# File 'lib/quickfix_fields.rb', line 17283

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

Class Method Details

.fieldObject



17280
17281
17282
# File 'lib/quickfix_fields.rb', line 17280

def MaturityMonthYearIncrementUnits.field
  return 1302
end