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 #
namespace kuzzleio {
class User {
public:
// Getters
const std::string& id() const;
const std::string& content() const;
const std::vector<std::string>& profile_ids() const;
};
}
Edit this page on Github(opens new window)