Class: Quickfix::SenderLocationID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ SenderLocationID

Returns a new instance of SenderLocationID.



1839
1840
1841
1842
1843
1844
1845
# File 'lib/quickfix_fields.rb', line 1839

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

Class Method Details

.fieldObject



1836
1837
1838
# File 'lib/quickfix_fields.rb', line 1836

def SenderLocationID.field
	return 142
end