Class: Quickfix::NoUnderlyings

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoUnderlyings

Returns a new instance of NoUnderlyings.



11095
11096
11097
11098
11099
11100
11101
# File 'lib/quickfix_fields.rb', line 11095

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

Class Method Details

.fieldObject



11092
11093
11094
# File 'lib/quickfix_fields.rb', line 11092

def NoUnderlyings.field
	return 711
end