NIMSDK-iOS
载入中...
搜索中...
未找到
NIMQChatUpdateParam.h
浏览该文件的文档.
1//
2// NIMQChatUpdateParam.h
3// NIMSDK
4//
5// Created by Netease.
6// Copyright © 2022 Netease. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@interface NIMQChatUpdateParam : NSObject<NSCopying>
14
15/**
16 * 操作附言
17 */
18@property(nullable, nonatomic, copy) NSString *postscript;
19
20/**
21 * 操作扩展字段
22 */
23@property(nullable, nonatomic, copy) NSString *extension;
24
25/**
26 * 推送文案
27 */
28@property(nullable, nonatomic, copy) NSString *pushContent;
29
30/**
31 * 推送payload
32 */
33@property(nullable, nonatomic, copy) NSDictionary *pushPayload;
34
35/**
36 * 环境变量
37 */
38@property(nullable, nonatomic, copy) NSString *env;
39
40/**
41 * 是否需要抄送
42 */
43@property(nonatomic, assign) BOOL routeEnable;
44
45
46/**
47 * 操作者账号
48 */
49@property(nullable, nonatomic, copy, readonly) NSString *operatorAccid;
50
51/**
52 * 操作者客户端类型
53 */
54@property(nonatomic, assign, readonly) NSInteger operatorClientType;
55
56
57
58@end
59
60NS_ASSUME_NONNULL_END
Definition: NIMQChatUpdateParam.h:13
NSDictionary * pushPayload
Definition: NIMQChatUpdateParam.h:33
BOOL routeEnable
Definition: NIMQChatUpdateParam.h:43
NSString * extension
Definition: NIMQChatUpdateParam.h:23
NSString * postscript
Definition: NIMQChatUpdateParam.h:18
NSInteger operatorClientType
Definition: NIMQChatUpdateParam.h:54
NSString * pushContent
Definition: NIMQChatUpdateParam.h:28
NSString * env
Definition: NIMQChatUpdateParam.h:38
NSString * operatorAccid
Definition: NIMQChatUpdateParam.h:49