‪JMSDK iOS  ‪v2.8.0
‪API文档
JCConferenceQueryConfResult.h
浏览该文件的文档.
1 //
2 // JCConferenceQueryConfResult.h
3 // JCSDKOC
4 //
5 // Created by juphoon on 2018/4/16.
6 // Copyright © 2018年 juphoon. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
11 NS_ASSUME_NONNULL_BEGIN
13 extern NSString * const JCConferenceReservedCountKey;
15 extern NSString * const JCConferenceStartedCountKey;
17 extern NSString * const JCConferenceCanceledCountKey;
19 extern NSString * const JCConferenceEndedCountKey;
20 
25 @interface JCConferenceQueryConfResult : NSObject
33 @property (nullable, nonatomic, strong) NSDictionary<NSString *, NSNumber *> *reserveInfoCount;
37 @property (nullable, nonatomic, strong) NSArray<JCConferenceReserveInfo *> *reserveInfoList;
38 
42 @property (nonatomic, assign) bool hasMore;
43 
44 @end
45 
46 NS_ASSUME_NONNULL_END
NSString *const JCConferenceEndedCountKey
已结束的会议总数
NSString *const JCConferenceStartedCountKey
已开始的会议总数
NS_ASSUME_NONNULL_BEGIN NSString *const JCConferenceReservedCountKey
预约中的会议总数
NSString *const JCConferenceCanceledCountKey
已取消的会议总数
预约会议查询结果类
Definition: JCConferenceQueryConfResult.h:26
bool hasMore
Definition: JCConferenceQueryConfResult.h:42
NSDictionary< NSString *, NSNumber * > * reserveInfoCount
Definition: JCConferenceQueryConfResult.h:33
NSArray< JCConferenceReserveInfo * > * reserveInfoList
Definition: JCConferenceQueryConfResult.h:37
预约信息
Definition: JCConferenceReserveInfo.h:75