Class: Quickfix::CashOutstanding

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from DoubleField

#getValue, #setValue

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

Class Method Details

.fieldObject



12184
12185
12186
# File 'lib/quickfix_fields.rb', line 12184

def CashOutstanding.field
  return 901
end