Class: Quickfix::NoUnderlyingAmounts

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoUnderlyingAmounts

Returns a new instance of NoUnderlyingAmounts.



7455
7456
7457
7458
7459
7460
7461
# File 'lib/quickfix_fields.rb', line 7455

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

Class Method Details

.fieldObject



7452
7453
7454
# File 'lib/quickfix_fields.rb', line 7452

def NoUnderlyingAmounts.field
	return 984
end