IMP(低代码音视频工厂)SDK v1.5.0
IMP SDK API Reference Manual for Windows Platforms
get_doc_req.h
1// Copyright (c) 2019 The Alibaba DingTalk Authors. All rights reserved.
2
3#pragma once
4
5#include <string>
6#include <utility>
7
8namespace alibaba { namespace doc {
9
13struct GetDocReq final {
14
18 std::string doc_id;
22 std::string room_id;
23
24 GetDocReq(std::string doc_id_,
25 std::string room_id_)
26 : doc_id(std::move(doc_id_))
27 , room_id(std::move(room_id_))
28 {}
29
30 GetDocReq() {}
31};
32
33} } // namespace alibaba::doc
获取文档请求
Definition: get_doc_req.h:13
std::string room_id
Definition: get_doc_req.h:22
std::string doc_id
Definition: get_doc_req.h:18