Updated on 2025-07-28 GMT+08:00

Enterprise Configuration Information

Notification Description

A notification is sent when the login is successful. The enterprise configuration information is delivered.

Method Definition

1
- (void)onCorpConfigNotify:(HWMCorpConfigInfo *)corpConfig;

Sample Code

- (void)onCorpConfigNotify:(HWMCorpConfigInfo *)corpConfig {
    if (corpConfig.hasSMSPerm) {
        NSLog(@"The SMS notification sending permission is available.");
    }
    if (corpConfig.hasRecordPerm) {
        NSLog(@"The meeting recording permission is available.");
    }
    if (corpConfig.hasPstnPerm) {
        NSLog(@"The PSTN call permission is available.");
    }
}

Precautions

  1. Subscribe to the HWMNotifyHandler delegate during SDK initialization or set the delegate on the target page.

Parameter Description

Table 1 Parameter description

Parameter

Type

Description

corpConfig

HWMCorpConfigInfo *

Configuration information.

Table 2 HWMCorpConfigInfo parameters

Parameter

Type

Description

hasRecordPerm

BOOL

Whether the meeting recording permission is available.

hasPstnPerm

BOOL

Whether the PSTN call permission is available.

hasSMSPerm

BOOL

Whether the permission for sending SMS notifications is available.

corpEnableSummary

BOOL

Whether to support meeting minutes.