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 #
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;
};
}
Edit this page on Github(opens new window)