Class: Quickfix::Issuer

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) ⇒ Issuer

Returns a new instance of Issuer.



1956
1957
1958
1959
1960
1961
1962
# File 'lib/quickfix_fields.rb', line 1956

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

Class Method Details

.fieldObject



1953
1954
1955
# File 'lib/quickfix_fields.rb', line 1953

def Issuer.field
	return 106
end