| 28 | using json = nlohmann::json; |
| 29 | |
| 30 | void from_json(const json &j, application_integration_types& out) { |
| 31 | out = static_cast<dpp::application_integration_types>(j.get<int>()); |
| 32 | } |
| 33 | |
| 34 | void from_json(const json &j, application_install_params& out) { |
| 35 | auto permissions = j.find("permissions"); |