Class: Quickfix::MaturityDate

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ MaturityDate

Returns a new instance of MaturityDate.



4738
4739
4740
4741
4742
4743
4744
# File 'lib/quickfix_fields.rb', line 4738

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

Class Method Details

.fieldObject



4735
4736
4737
# File 'lib/quickfix_fields.rb', line 4735

def MaturityDate.field
  return 541
end