D++ (DPP)
C++ Discord API Bot Library
|
Returned when fetching the permissions for a command in a guild. More...
#include <appcommand.h>
Public Member Functions | |
guild_command_permissions () | |
Construct a new guild command permissions object. More... | |
virtual | ~guild_command_permissions ()=default |
guild_command_permissions & | fill_from_json (nlohmann::json *j) |
Convert object from nlohmann::json. More... | |
auto | to_json (bool with_id=false) const |
Convert object to nlohmann::json. More... | |
std::string | build_json (bool with_id=false) const |
Convert object to json string. More... | |
Public Attributes | |
snowflake | id |
The id of the command. More... | |
snowflake | application_id |
The id of the application the command belongs to. More... | |
snowflake | guild_id |
The id of the guild. More... | |
std::vector< command_permission > | permissions |
The permissions for the command, in the guild. More... | |
Protected Member Functions | |
guild_command_permissions & | fill_from_json_impl (nlohmann::json *j) |
Fill object properties from JSON. More... | |
Friends | |
struct | json_interface< guild_command_permissions > |
Returned when fetching the permissions for a command in a guild.
dpp::guild_command_permissions::guild_command_permissions | ( | ) |
Construct a new guild command permissions object.
|
virtualdefault |
|
inlineinherited |
Convert object to json string.
with_id | Whether to include the ID or not |
|
inlineinherited |
Convert object from nlohmann::json.
j | nlohmann::json object |
|
protected |
Fill object properties from JSON.
j | JSON to fill from |
|
inlineinherited |
Convert object to nlohmann::json.
with_id | Whether to include the ID or not |
|
friend |
snowflake dpp::guild_command_permissions::application_id |
The id of the application the command belongs to.
snowflake dpp::guild_command_permissions::guild_id |
The id of the guild.
snowflake dpp::guild_command_permissions::id |
The id of the command.
std::vector<command_permission> dpp::guild_command_permissions::permissions |
The permissions for the command, in the guild.