DiscordCoreAPI
A Discord bot library written in C++, with custom asynchronous coroutines.
Loading...
Searching...
No Matches
Batch Editing Guild Application Command's Permissions

/// Test.hpp -header for the "test" command.
/// https://github.com/RealTimeChris/DiscordCoreAPI
#pragma once
#include "index.hpp"
namespace discord_core_api {
class test : public base_function {
public:
test() {
commandName = "test";
helpDescription = "testing purposes!";
embed_data msgEmbed;
msgEmbed.setDescription("------\nSimply enter !test or /test!\n------");
msgEmbed.setTitle("__**test usage:**__");
msgEmbed.setTimeStamp(getTimeAndDate());
msgEmbed.setColor("fe_fe_fe");
helpEmbed = msgEmbed;
}
unique_ptr<base_function> create() {
return makeUnique<test>();
}
virtual void execute(base_function_arguments& args) {
input_events::deleteInputEventResponseAsync(args.eventData).get();
batch_edit_guild_application_command_permissions_data& dataPackage01;
jsonifier::vector<edit_guild_application_command_permissions_data> dataPackage02 {
{.permissions = {{.type = application_command_permission_type::user, .permission = false, .id = "859853159115259905"}},
.commandName = "selldrugs"}};
dataPackage01.guildId = args.eventData.getGuildId();
dataPackage01.permissions = dataPackage02;
auto returnVector = application_commands::batchEditGuildApplicationCommandPermissionsAsync(dataPackage01).get();
for (const auto& value: returnVector) {
std::cout << value.applicationId << std::endl;
}
}
};
}
The main namespace for the forward-facing interfaces.
Base class for the command classes.