Class: Quickfix::EncodedIssuer

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

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from StringField

#<, #<=, #==, #>, #>=, #getValue, #setValue

Constructor Details

#initialize(data = nil) ⇒ EncodedIssuer

Returns a new instance of EncodedIssuer.



4413
4414
4415
4416
4417
4418
4419
# File 'lib/quickfix_fields.rb', line 4413

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

Class Method Details

.fieldObject



4410
4411
4412
# File 'lib/quickfix_fields.rb', line 4410

def EncodedIssuer.field
	return 349
end