SDK
SDK C++ v1.x
1

You are currently looking at the documentation of a previous version of Kuzzle. We strongly recommend that you use the latest version. You can also use the version selector in the top menu.

This SDK has been deprecated because of stability issues. It is not advised to use it in a production environment.

User #

The User class is the SDK representation of a Kuzzle user.

Instances of the User class are returned by the following methods:

Public class definition #

Copied to clipboard!
namespace kuzzleio {
  class User {
    public:
      // Getters
      const std::string& id() const;
      const std::string& content() const;
      const std::vector<std::string>& profile_ids() const;
  };
}