Class: Quickfix::CashOutstanding

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ CashOutstanding

Returns a new instance of CashOutstanding.



8573
8574
8575
8576
8577
8578
8579
# File 'lib/quickfix_fields.rb', line 8573

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

Class Method Details

.fieldObject



8570
8571
8572
# File 'lib/quickfix_fields.rb', line 8570

def CashOutstanding.field
	return 901
end