Class: Quickfix::NoReturnRates

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

Instance Method Summary collapse

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