Class: Quickfix::NoPartyIDs

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ NoPartyIDs

Returns a new instance of NoPartyIDs.



6298
6299
6300
6301
6302
6303
6304
# File 'lib/quickfix_fields.rb', line 6298

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