Class: Quickfix::LocationID

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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ LocationID

Returns a new instance of LocationID.



1410
1411
1412
1413
1414
1415
1416
# File 'lib/quickfix_fields.rb', line 1410

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

Class Method Details

.fieldObject



1407
1408
1409
# File 'lib/quickfix_fields.rb', line 1407

def LocationID.field
	return 283
end