Class: Quickfix::NoReturnRates

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from IntField

#getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ NoReturnRates

Returns a new instance of NoReturnRates.



70232
70233
70234
70235
70236
70237
70238
# File 'lib/quickfix_fields.rb', line 70232

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

Class Method Details

.fieldObject



70229
70230
70231
# File 'lib/quickfix_fields.rb', line 70229

def NoReturnRates.field
  return 42735
end