Class: Quickfix::UnderlyingDatedDate

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

Returns a new instance of UnderlyingDatedDate.



26721
26722
26723
26724
26725
26726
26727
# File 'lib/quickfix_fields.rb', line 26721

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

Class Method Details

.fieldObject



26718
26719
26720
# File 'lib/quickfix_fields.rb', line 26718

def UnderlyingDatedDate.field
  return 2041
end