IMP(低代码音视频工厂)SDK v1.5.0
IMP SDK API Reference Manual for Windows Platforms
send_custom_message_to_users_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#include <vector>
8
9namespace alibaba { namespace chat {
10
15
19 std::string topic_id;
23 std::string body = "";
27 std::vector<std::string> receiver_list;
28
29 SendCustomMessageToUsersReq(std::string topic_id_,
30 std::string body_,
31 std::vector<std::string> receiver_list_)
32 : topic_id(std::move(topic_id_))
33 , body(std::move(body_))
34 , receiver_list(std::move(receiver_list_))
35 {}
36
38};
39
40} } // namespace alibaba::chat
发送自定义消息给指定人员请求
Definition: send_custom_message_to_users_req.h:14
std::string body
Definition: send_custom_message_to_users_req.h:23
std::vector< std::string > receiver_list
Definition: send_custom_message_to_users_req.h:27
std::string topic_id
Definition: send_custom_message_to_users_req.h:19