Class: Quickfix::ValuationDate

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

Returns a new instance of ValuationDate.



40202
40203
40204
40205
40206
40207
40208
# File 'lib/quickfix_fields.rb', line 40202

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

Class Method Details

.fieldObject



40199
40200
40201
# File 'lib/quickfix_fields.rb', line 40199

def ValuationDate.field
  return 2085
end