Class: Quickfix::NoPartySubIDs

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoPartySubIDs

Returns a new instance of NoPartySubIDs.



10926
10927
10928
10929
10930
10931
10932
# File 'lib/quickfix_fields.rb', line 10926

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