Class: Quickfix::SenderLocationID

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

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SenderLocationID

Returns a new instance of SenderLocationID.



435
436
437
438
439
440
441
# File 'lib/quickfix_fields.rb', line 435

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