NIMSDK-iOS
载入中...
搜索中...
未找到
NIMRobot.h
浏览该文件的文档.
1//
2// NIMRobot.h
3// NIMLib
4//
5// Created by Netease.
6// Copyright © 2017年 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13/**
14 * 机器人
15 */
16@interface NIMRobot : NSObject
17
18/**
19 * 机器人对应的云信账号 Id
20 */
21@property (nullable,nonatomic,copy) NSString *userId;
22
23/**
24 * 机器人对应的波特 Id
25 */
26@property (nullable,nonatomic,copy,readonly) NSString *botId;
27
28/**
29 * 机器人昵称
30 */
31@property (nullable,nonatomic,copy,readonly) NSString *nickname;
32
33/**
34 * 机器人简介
35 */
36@property (nullable,nonatomic,copy,readonly) NSString *intro;
37
38/**
39 * 机器人头像
40 */
41@property (nullable,nonatomic,copy,readonly) NSString *avatarUrl;
42
43/**
44 * 机器人头像缩略图
45 * @discussion 仅适用于使用云信上传服务进行上传的资源,否则无效。
46 */
47@property (nullable,nonatomic,copy,readonly) NSString *thumbAvatarUrl;
48
49
50@end
51
52
53NS_ASSUME_NONNULL_END
Definition: NIMRobot.h:17
NSString * userId
Definition: NIMRobot.h:21
NSString * nickname
Definition: NIMRobot.h:31
NSString * thumbAvatarUrl
Definition: NIMRobot.h:47
NSString * avatarUrl
Definition: NIMRobot.h:41
NSString * intro
Definition: NIMRobot.h:36
NSString * botId
Definition: NIMRobot.h:26