Class: Quickfix::UnderlyingInterestAccrualDate

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

Returns a new instance of UnderlyingInterestAccrualDate.



26734
26735
26736
26737
26738
26739
26740
# File 'lib/quickfix_fields.rb', line 26734

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

Class Method Details

.fieldObject



26731
26732
26733
# File 'lib/quickfix_fields.rb', line 26731

def UnderlyingInterestAccrualDate.field
  return 2042
end