1#include <nlohmann/json.hpp>
2
3#include "mtx/identifiers.hpp"
4#include "mtx/responses/create_room.hpp"
5
6namespace mtx {
7namespace responses {
8
9void
10from_json(const nlohmann::json &obj, CreateRoom &response)
11{
12 response.room_id = obj.at(key: "room_id").get<identifiers::Room>();
13}
14}
15}
16