D++ (DPP)
C++ Discord API Bot Library
|
The ban class represents a ban on a guild. More...
Public Member Functions | |
ban () | |
virtual | ~ban ()=default |
template<typename U = T, typename = decltype(std::declval<U&>().fill_from_json_impl(std::declval<nlohmann::json*>()))> | |
T & | fill_from_json (nlohmann::json *j) |
Convert object from nlohmann::json. More... | |
template<typename U = T, typename = decltype(std::declval<U&>().to_json_impl(bool{}))> | |
auto | to_json (bool with_id=false) const |
Convert object to nlohmann::json. More... | |
template<typename U = T, typename = decltype(std::declval<U&>().to_json_impl(bool{}))> | |
std::string | build_json (bool with_id=false) const |
Convert object to json string. More... | |
Public Attributes | |
std::string | reason |
The ban reason. More... | |
snowflake | user_id |
User ID the ban applies to. More... | |
Protected Member Functions | |
ban & | fill_from_json_impl (nlohmann::json *j) |
Friends | |
struct | json_interface< ban > |
The ban class represents a ban on a guild.
dpp::ban::ban | ( | ) |
Constructor
|
virtualdefault |
Destructor
|
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 |
Read class values from json object
j | A json object to read from |
|
inlineinherited |
Convert object to nlohmann::json.
with_id | Whether to include the ID or not |
|
friend |
std::string dpp::ban::reason |
The ban reason.
snowflake dpp::ban::user_id |
User ID the ban applies to.