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.

UserRight #

The UserRight class is the SDK representation of a single user's right.

Instances of the UserRight class are returned by the followings methods:

Public class definition #

Copied to clipboard!
namespace kuzzleio {
  class UserRight {
    public:
      // Getters
      const std::string& controller() const;
      const std::string& action() const;
      const std::string& index() const;
      const std::string& collection() const;
      const std::string& value() const;
  };
}