Class: Quickfix::NoPartyRelationships

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoPartyRelationships

Returns a new instance of NoPartyRelationships.



20455
20456
20457
20458
20459
20460
20461
# File 'lib/quickfix_fields.rb', line 20455

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