Class: Quickfix::ClearingInstruction

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClearingInstruction

Returns a new instance of ClearingInstruction.



7858
7859
7860
7861
7862
7863
7864
# File 'lib/quickfix_fields.rb', line 7858

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