Class: Quickfix::SenderSubID

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

Returns a new instance of SenderSubID.



149
150
151
152
153
154
155
# File 'lib/quickfix_fields.rb', line 149

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

Class Method Details

.fieldObject



146
147
148
# File 'lib/quickfix_fields.rb', line 146

def SenderSubID.field
  return 50
end