Class: Quickfix::ClientID

Inherits:
StringField
  • Object
show all
Defined in:
lib/quickfix_fields.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data = nil) ⇒ ClientID

Returns a new instance of ClientID.



11511
11512
11513
11514
11515
11516
11517
# File 'lib/quickfix_fields.rb', line 11511

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

Class Method Details

.fieldObject



11508
11509
11510
# File 'lib/quickfix_fields.rb', line 11508

def ClientID.field
  return 109
end