Class: Quickfix::SecondaryExecID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SecondaryExecID

Returns a new instance of SecondaryExecID.



7234
7235
7236
7237
7238
7239
7240
# File 'lib/quickfix_fields.rb', line 7234

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