Class: Quickfix::SecurityExchange

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

Returns a new instance of SecurityExchange.



3100
3101
3102
3103
3104
3105
3106
# File 'lib/quickfix_fields.rb', line 3100

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

Class Method Details

.fieldObject



3097
3098
3099
# File 'lib/quickfix_fields.rb', line 3097

def SecurityExchange.field
  return 207
end