Class: Quickfix::UnderlyingMaturityDay

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ UnderlyingMaturityDay

Returns a new instance of UnderlyingMaturityDay.



3971
3972
3973
3974
3975
3976
3977
# File 'lib/quickfix_fields.rb', line 3971

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

Class Method Details

.fieldObject



3968
3969
3970
# File 'lib/quickfix_fields.rb', line 3968

def UnderlyingMaturityDay.field
  return 314
end