Class: Quickfix::CashOutstanding

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CashOutstanding

Returns a new instance of CashOutstanding.



12187
12188
12189
12190
12191
12192
12193
# File 'lib/quickfix_fields.rb', line 12187

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