MCPcopy Create free account
hub / github.com/brainboxdotcc/DPP / guild_delete_integration

Method guild_delete_integration

src/dpp/cluster/guild.cpp:114–116  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

112
113
114void cluster::guild_delete_integration(snowflake guild_id, snowflake integration_id, command_completion_event_t callback) {
115 rest_request<confirmation>(this, API_PATH "/guilds", std::to_string(guild_id), "integrations/" + std::to_string(integration_id), m_delete, "", callback);
116}
117
118void cluster::guild_edit(const class guild &g, command_completion_event_t callback) {
119 rest_request<guild>(this, API_PATH "/guilds", std::to_string(g.id), "", m_patch, g.build_json(true), callback);

Callers

nothing calls this directly

Calls 1

to_stringFunction · 0.85

Tested by

no test coverage detected