1#include "mtx/responses/media.hpp"
2
3#include <nlohmann/json.hpp>
4
5using json = nlohmann::json;
6
7namespace mtx {
8namespace responses {
9
10void
11from_json(const json &obj, ContentURI &res)
12{
13 res.content_uri = obj.at(key: "content_uri").get<std::string>();
14}
15}
16}
17