NIMSDK-iOS
载入中...
搜索中...
未找到
NIMMessageRobotInfo.h
浏览该文件的文档.
1//
2// NIMMessageRobotInfo.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright © 2023年 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 消息中机器人相关信息
15 */
16@interface NIMMessageRobotInfo : NSObject
17
18/**
19 * 机器人具体功能
20 * @discussion
21 *
22 */
23@property(nullable, nonatomic, copy) NSString *function;
24
25/**
26 * 话题
27 * @discussion
28 *
29 */
30@property(nullable, nonatomic, copy) NSString *topic;
31
32/**
33 * 自定义内容
34 * @discussion
35 *
36 */
37@property(nullable, nonatomic, copy) NSString *customContent;
38
39/**
40 * 机器人账号
41 * @discussion 仅群消息有效,指定要发送给群里的具体某个机器人账号
42 *
43 */
44@property(nullable, nonatomic, copy) NSString *account;
45
46@end
47
48NS_ASSUME_NONNULL_END
Definition: NIMMessageRobotInfo.h:17
NSString * account
Definition: NIMMessageRobotInfo.h:44
NSString * topic
Definition: NIMMessageRobotInfo.h:30
NSString * function
Definition: NIMMessageRobotInfo.h:23
NSString * customContent
Definition: NIMMessageRobotInfo.h:37