更新时间:2025-07-28 GMT+08:00

拒绝会议邀请

rejectConfWithCallback:

接口描述

该接口用于拒绝会议邀请。

注意事项

实际业务处理结果在对应的callback中返回。

方法定义

1
- (void)rejectConfWithCallback:(HWMSDKCompleteHandler)callback;

参数描述

返回值

示例代码
[[HWMSdk getOpenApi] rejectConfWithCallback:^(NSError * _Nullable error, id  _Nullable result) {
    if (error) {
        [HWMConsoleManager shareInstance].console = [NSString stringWithFormat:@"reject conf failed, error code: %ld", error.code];
    } else {
        [HWMConsoleManager shareInstance].console = @"reject conf success";
    }
}];