Class: Quickfix::NoNestedPartyIDs

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoNestedPartyIDs

Returns a new instance of NoNestedPartyIDs.



7390
7391
7392
7393
7394
7395
7396
# File 'lib/quickfix_fields.rb', line 7390

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