| 494 | } |
| 495 | |
| 496 | std::string interaction::get_command_name() const { |
| 497 | try { |
| 498 | return get_command_interaction().name; |
| 499 | } |
| 500 | catch (dpp::logic_exception&) { |
| 501 | return std::string(); |
| 502 | } |
| 503 | } |
| 504 | |
| 505 | interaction& interaction::fill_from_json_impl(nlohmann::json* j) { |
| 506 | j->get_to(*this); |
no test coverage detected