D++ (DPP)  10.0.30
C++ Discord API Bot Library
dpp::prune Struct Reference

Defines a request to count prunable users, or start a prune operation. More...

#include "prune.h"

Inheritance diagram for dpp::prune:
Collaboration diagram for dpp::prune:

Public Member Functions

virtual ~prune ()=default
 Destroy this prune object. More...
 
std::string build_json (bool with_id=false) const
 Convert object to json string. More...
 
prunefill_from_json (nlohmann::json *j)
 Convert object from nlohmann::json. More...
 
json to_json (bool with_id=false) const
 Build JSON from this object. More...
 

Public Attributes

bool compute_prune_count
 True if the count of pruneable users should be returned. More...
 
uint32_t days = 0
 Number of days to include in the prune. More...
 
std::vector< snowflakeinclude_roles
 Roles to include in the prune (empty to include everyone). More...
 

Protected Member Functions

prunefill_from_json_impl (nlohmann::json *j)
 Fill this object from json. More...
 
virtual json to_json_impl (bool with_prune_count=false) const
 Build JSON from this object. More...
 

Friends

struct json_interface< prune >
 

Detailed Description

Defines a request to count prunable users, or start a prune operation.

Constructor & Destructor Documentation

◆ ~prune()

virtual dpp::prune::~prune ( )
virtualdefault

Destroy this prune object.

Member Function Documentation

◆ build_json()

std::string dpp::json_interface< prune >::build_json ( bool  with_id = false) const
inlineinherited

Convert object to json string.

Parameters
with_idWhether to include the ID or not
Note
Some fields are conditionally filled, do not rely on all fields being present
Returns
std::string Json built from the structure

◆ fill_from_json()

prune & dpp::json_interface< prune >::fill_from_json ( nlohmann::json j)
inlineinherited

Convert object from nlohmann::json.

Parameters
jnlohmann::json object
Returns
T& Reference to self for fluent calling

◆ fill_from_json_impl()

prune & dpp::prune::fill_from_json_impl ( nlohmann::json j)
protected

Fill this object from json.

Parameters
jJSON object to fill from
Returns
A reference to self

◆ to_json()

json dpp::prune::to_json ( bool  with_id = false) const

Build JSON from this object.

Parameters
with_idTrue if the prune count boolean is to be set in the built JSON
Returns
The JSON of the prune object

◆ to_json_impl()

json dpp::prune::to_json_impl ( bool  with_prune_count = false) const
protectedvirtual

Build JSON from this object.

Parameters
with_prune_countTrue if the prune count boolean is to be set in the built JSON
Returns
The JSON of the prune object

Friends And Related Function Documentation

◆ json_interface< prune >

friend struct json_interface< prune >
friend

Member Data Documentation

◆ compute_prune_count

bool dpp::prune::compute_prune_count

True if the count of pruneable users should be returned.

Warning
Discord recommend not using this on big guilds.

◆ days

uint32_t dpp::prune::days = 0

Number of days to include in the prune.

◆ include_roles

std::vector<snowflake> dpp::prune::include_roles

Roles to include in the prune (empty to include everyone).


The documentation for this struct was generated from the following files: