Class: Quickfix::PartySubID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ PartySubID

Returns a new instance of PartySubID.



7182
7183
7184
7185
7186
7187
7188
# File 'lib/quickfix_fields.rb', line 7182

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