Class: Quickfix::MaturityMonthYear

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MaturityMonthYear

Returns a new instance of MaturityMonthYear.



5856
5857
5858
5859
5860
5861
5862
# File 'lib/quickfix_fields.rb', line 5856

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

Class Method Details

.fieldObject



5853
5854
5855
# File 'lib/quickfix_fields.rb', line 5853

def MaturityMonthYear.field
  return 200
end