Class: Quickfix::PartyID

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

Returns a new instance of PartyID.



6233
6234
6235
6236
6237
6238
6239
# File 'lib/quickfix_fields.rb', line 6233

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

Class Method Details

.fieldObject



6230
6231
6232
# File 'lib/quickfix_fields.rb', line 6230

def PartyID.field
  return 448
end