IMP(低代码音视频工厂)SDK v1.5.0
IMP SDK API Reference Manual for Windows Platforms
send_custom_message_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 chat {
9
14
18 std::string topic_id;
22 std::string body = "";
23
24 SendCustomMessageReq(std::string topic_id_,
25 std::string body_)
26 : topic_id(std::move(topic_id_))
27 , body(std::move(body_))
28 {}
29
31};
32
33} } // namespace alibaba::chat
发送自定义消息请求
Definition: send_custom_message_req.h:13
std::string topic_id
Definition: send_custom_message_req.h:18
std::string body
Definition: send_custom_message_req.h:22