| 28 | using json = nlohmann::json; |
| 29 | |
| 30 | audit_entry::audit_entry(): type(aut_guild_update) { |
| 31 | } |
| 32 | |
| 33 | audit_entry &audit_entry::fill_from_json_impl(nlohmann::json *j) { |
| 34 | this->id = snowflake_not_null(j, "id"); |
nothing calls this directly
no outgoing calls
no test coverage detected