HyphenateChatSDK 3.9.9.1
EMCircleServerEvent.h
1//
2// EMCircleServerEvent.h
3// HyphenateChat
4//
5// Created by 冯钊 on 2022/6/28.
6// Copyright © 2022 easemob.com. All rights reserved.
7//
8
9#import <Foundation/Foundation.h>
10
11NS_ASSUME_NONNULL_BEGIN
12
13@interface EMCircleServerEvent : NSObject
14
15- (instancetype)init NS_UNAVAILABLE;
16+ (instancetype)new NS_UNAVAILABLE;
17
22@property (readonly) NSString *serverId;
27@property (readonly) NSString *serverName;
32@property (readonly, nullable) NSString *serverDesc;
37@property (readonly, nullable) NSString *serverCustom;
42@property (readonly, nullable) NSString *serverIconUrl;
47@property (readonly, nullable) NSString *serverBackgroundUrl;
52@property (readonly) NSString *from;
57@property (readonly) NSArray<NSString *> *tos;
62@property (readonly) uint64_t ts;
63
64@end
65
66NS_ASSUME_NONNULL_END
Definition: EMCircleServerEvent.h:14
NSString * serverBackgroundUrl
Definition: EMCircleServerEvent.h:47
uint64_t ts
Definition: EMCircleServerEvent.h:62
NSString * from
Definition: EMCircleServerEvent.h:52
NSString * serverId
Definition: EMCircleServerEvent.h:22
NSString * serverDesc
Definition: EMCircleServerEvent.h:32
NSString * serverIconUrl
Definition: EMCircleServerEvent.h:42
NSString * serverCustom
Definition: EMCircleServerEvent.h:37
NSString * serverName
Definition: EMCircleServerEvent.h:27
NSArray< NSString * > * tos
Definition: EMCircleServerEvent.h:57