doum
9 天以前 f4f2eb7c80ab85bf0e52c1b911d5a4a82cda330d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
export declare const apiName = "device.notification.getNotificationStatus";
/**
 * 获取客户端的通知状态开关是否打开 请求参数定义
 * @apiName device.notification.getNotificationStatus
 */
export interface IDeviceNotificationGetNotificationStatusParams {
}
/**
 * 获取客户端的通知状态开关是否打开 返回结果定义
 * @apiName device.notification.getNotificationStatus
 */
export interface IDeviceNotificationGetNotificationStatusResult {
    /** 系统通知开关是否打开 */
    system_notification: boolean;
    /** 接受新消息通知是否打开 */
    receive_msg_notification: boolean;
    /** 具体消息通知 */
    msg_notification: {
        /** 普通消息开关是否打开 */
        normal: boolean;
        /** DING消息开关是否打开 */
        ding: boolean;
        /** 特别关注人消息开关是否打开 */
        concern: boolean;
        /** At我的消息开关是否打开 */
        at_me: boolean;
        /** 红包消息开关是否打开 */
        red_packet: boolean;
        /** 连续DING消息开关是否打开 */
        ding_long: boolean;
    };
}
/**
 * 获取客户端的通知状态开关是否打开
 * @apiName device.notification.getNotificationStatus
 * @supportVersion ios: 5.1.41 android: 5.1.41
 * @author Android:彦海, iOS:新鹏
 */
export declare function getNotificationStatus$(params: IDeviceNotificationGetNotificationStatusParams): Promise<IDeviceNotificationGetNotificationStatusResult>;
export default getNotificationStatus$;