| 931 | } |
| 932 | |
| 933 | command_permission::command_permission(snowflake id, const command_permission_type t, bool permission) : |
| 934 | id(id), type(t), permission(permission) { |
| 935 | } |
| 936 | |
| 937 | command_permission& command_permission::fill_from_json_impl(nlohmann::json* j) { |
| 938 | id = snowflake_not_null(j, "id"); |
nothing calls this directly
no outgoing calls
no test coverage detected