Class: Quickfix::UnderlyingSecurityExchange

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

Returns a new instance of UnderlyingSecurityExchange.



3893
3894
3895
3896
3897
3898
3899
# File 'lib/quickfix_fields.rb', line 3893

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

Class Method Details

.fieldObject



3890
3891
3892
# File 'lib/quickfix_fields.rb', line 3890

def UnderlyingSecurityExchange.field
	return 308
end