Updated on 2023-03-23 GMT+08:00

Meeting List Change Notification

Notification Description

A notification is sent when the meeting list changes.

Method Definition

1
- (void)onReceiveConfList:(NSArray<HWMConfListItemInfo *> *)confList;

Sample Code

- (void)onReceiveConfList:(NSArray<HWMConfListItemInfo *> *)confList {
    NSLog(@"%lu", confList.count);
    [self.dataArr removeAllObjects];
    [self.dataArr addObjectsFromArray:confList];
    [self.listView reloadData];
}

Precautions

  1. Subscribe to the HWMBizNotificationHandler proxy during SDK initialization or set the proxy on the target page.

Parameter Description

Table 1 Parameter description

Parameter

Type

Description

confList

NSArray<HWMConfListItemInfo *> *

Meeting list.

Table 2 HWMConfListItemInfo parameters

Parameter

Type

Description

confId

NSString *

Meeting ID.

confSubject

NSString *

Meeting topic.

accessNumber

NSString *

Meeting access code.

chairmanPwd

NSString *

Host password.

generalPwd

NSString *

Guest password.

startTime

NSTimeInterval

Meeting start time. The value is a UTC timestamp, accurate to seconds.

endTime

NSTimeInterval

Meeting start time. The value is a UTC timestamp, accurate to seconds.

videoConf

BOOL

Whether the meeting is a video meeting.

confScheduleName

NSString *

Scheduler name.

chairJoinUri

NSString *

Link for the host to join the meeting.

guestJoinUri

NSString *

Link for guests to join the meeting.

vmrConferenceId

NSString *

ID of the meeting held in the cloud meeting room.

isAutoRecord

BOOL

Whether to enable automatic recording for a meeting.

scheduleVmr

BOOL

Whether the meeting is a scheduled meeting held in the cloud meeting room. 0: Common meeting. 1: Scheduled meeting held in the cloud meeting room.

role

HWMConfRoleType

Role.