代码拉取完成,页面将自动刷新
/*
* Copyright (c) 2021-2024 Huawei Device Co., Ltd.
* Licensed under the Apache License, Version 2.0 (the "License"),
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* @file Information carried when a notification is sent
* @kit NotificationKit
*/
import image from '../@ohos.multimedia.image';
import type notificationManager from '../@ohos.notificationManager';
import type notificationSubscribe from '../@ohos.notificationSubscribe';
import { NotificationContent } from './notificationContent';
import { NotificationActionButton } from './notificationActionButton';
import { NotificationTemplate } from './notificationTemplate';
import { NotificationFlags } from './notificationFlags';
/*** if arkts 1.1 */
import notification from '../@ohos.notification';
import { WantAgent } from '../@ohos.wantAgent';
import type { BundleOption } from './NotificationCommonDef';
/*** endif */
/*** if arkts 1.2 */
import { WantAgent } from '../@ohos.app.ability.wantAgent';
import { BundleOption } from './NotificationCommonDef';
/*** endif */
/**
* Defines a NotificationRequest instance.
*
* @typedef NotificationRequest
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Defines a NotificationRequest instance.
*
* @typedef NotificationRequest
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
export interface NotificationRequest {
/**
* Notification content.
*
* @type { NotificationContent }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Notification content.
*
* @type { NotificationContent }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
content: NotificationContent;
/**
* Notification ID. The default value is 0. If the same notification ID exists, the notification content is updated.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Notification ID. The default value is 0. If the same notification ID exists, the notification content is updated.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
id?: number;
/**
* Unique ID carried in a notification sent by an app, which is used for notification deduplication.
* If an app publishes notifications with the same appMessageId locally or on the cloud, the device displays only one message.
* Repeated notifications received later will be silenced and deduplicated, and will not be displayed or notified.
* The deduplication flag is valid only within 24 hours after the notification is published. After 24 hours or the device is restarted,
* the deduplication flag becomes invalid.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
appMessageId?: string;
/**
* Notification slot type.
*
* @type { ?notification.SlotType }
* @syscap SystemCapability.Notification.Notification
* @since 7
* @deprecated since 11
* @useinstead NotificationRequest#notificationSlotType
*/
slotType?: notification.SlotType;
/**
* Notification slot type. The default value is OTHER_TYPES.
*
* @type { ?notificationManager.SlotType }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
notificationSlotType?: notificationManager.SlotType;
/**
* Whether the notification is an ongoing notification.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Whether the notification is an ongoing notification.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
isOngoing?: boolean;
/**
* Whether the notification can be removed.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
isUnremovable?: boolean;
/**
* Whether to update notifications only.
* - true: If a notification with the same ID exists, the notification is updated; otherwise, the notification fails to update and no notification is created.
* - false (default): If a notification with the same ID exists, the notification is updated; otherwise, a notification is created.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'18', '1.2':'20'}
* @arkts 1.1&1.2
*/
updateOnly?: boolean;
/**
* Time when the notification is sent. This API is automatically generated by the system. Data format: timestamp, in milliseconds.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Time when the notification is sent. This API is automatically generated by the system. Data format: timestamp, in milliseconds.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
deliveryTime?: number;
/**
* Whether the notification is automatically cleared. This parameter is valid only when the notification carries wantAgent or actionButtons.
* - true (default): The current notification is automatically cleared after the notification or button is tapped.
* - false: The current notification is retained after the notification or button is tapped.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Whether the notification is automatically cleared. This parameter is valid only when the notification carries wantAgent or actionButtons.
* - true (default): The current notification is automatically cleared after the notification or button is tapped.
* - false: The current notification is retained after the notification or button is tapped.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
tapDismissed?: boolean;
/**
* Time when the notification is automatically cleared. Data format: timestamp, in milliseconds.
* For example, if a notification is to be cleared after being displayed for 3 seconds (3000 ms),
* you can set new Date().getTime() + 3000 to meet this requirement.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Time when the notification is automatically cleared. Data format: timestamp, in milliseconds.
* For example, if a notification is to be cleared after being displayed for 3 seconds (3000 ms),
* you can set new Date().getTime() + 3000 to meet this requirement.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
autoDeletedTime?: number;
/**
* WantAgent instance to which the notification will be redirected after being clicked.
*
* @type { ?WantAgent }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
wantAgent?: WantAgent;
/**
* Expand parameters to provide customized services for applications.
*
* @type { ?object }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
extraInfo?: { [key: string]: any };
/**
* Expand parameters to provide customized services for applications.
*
* @type { ?Record<string, Object> }
* @syscap SystemCapability.Notification.Notification
* @since 20
* @arkts 1.2
*/
extraInfo?: Record<string, Object>;
/**
* Extended parameter. Recommendation system application usage.
*
* @type { ?Record<string, Object> }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since 20
* @arkts 1.1&1.2
*/
extendInfo?: Record<string, Object>;
/**
* Background color of the notification.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
color?: number;
/**
* Whether the notification background color can be enabled.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
colorEnabled?: boolean;
/**
* Whether to send a notification only once when the notification is published or updated.
* - true: A notification is sent only when the notification is published for the first time. For subsequent update,
* the notification mode is changed to LEVEL_MIN.
* - false (default): A notification is sent based on the configured notification mode.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Whether to send a notification only once when the notification is published or updated.
* - true: A notification is sent only when the notification is published for the first time. For subsequent update,
* the notification mode is changed to LEVEL_MIN.
* - false (default): A notification is sent based on the configured notification mode.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
isAlertOnce?: boolean;
/**
* Whether to display the stopwatch.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
isStopwatch?: boolean;
/**
* Whether to display the countdown time.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
isCountDown?: boolean;
/**
* Whether the notification is displayed as a floating icon in the status bar.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
isFloatingIcon?: boolean;
/**
* Notification label. The label field can be used independently, or used together with ID as a notification identifier. ID is preferentially used.
* If the label is not empty when a notification is published, you need to specify the label when updating or deleting the notification.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
label?: string;
/**
* Notification badge type.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
badgeIconStyle?: number;
/**
* Whether to display the time when the notification is delivered.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @since 7
*/
/**
* Whether to display the time when the notification is delivered.
*
* @type { ?boolean }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
showDeliveryTime?: boolean;
/**
* Notification button. A notification can contain a maximum of two buttons by default.
*
* @type { ?Array<NotificationActionButton> }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
actionButtons?: Array<NotificationActionButton>;
/**
* Small notification icon. Optional field. The total number of the icon pixel bytes cannot exceed 192 KB (which is
* obtained through getPixelBytesNumber. The recommended icon size is 128 px × 128 px.
*
* @type { ?image.PixelMap }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
smallIcon?: image.PixelMap;
/**
* Large notification icon. Optional field. The total number of the icon pixel bytes cannot exceed 192 KB (which is
* obtained through getPixelBytesNumber. The recommended icon size is 128 px × 128 px.
*
* @type { ?image.PixelMap }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
largeIcon?: image.PixelMap;
/**
* Overlay notification icon.
*
* @type { ?image.PixelMap }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
overlayIcon?: image.PixelMap;
/**
* Notification group name. This parameter is left blank by default.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @since 8
*/
/**
* Notification group name. This parameter is left blank by default.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
groupName?: string;
/**
* Name of the bundle that creates the notification.
*
* @type { ?string }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly creatorBundleName?: string;
/**
* UID used for creating the notification.
*
* @type { ?number }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly creatorUid?: number;
/**
* PID used for creating the notification.
*
* @type { ?number }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly creatorPid?: number;
/**
* ID of the user who creates the notification.
*
* @type { ?number }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly creatorUserId?: number;
/**
* Application instance key.
*
* @type { ?number }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since 12
* @deprecated since 15
* @useinstead NotificationRequest#appInstanceKey
*/
readonly creatorInstanceKey?: number;
/**
* Name of the custom ringtone file for application notifications.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
sound?: string;
/**
* Obtains the classification of this notification.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
classification?: string;
/**
* Unique ID of the notification.
*
* @type { ?string }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'7', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly hashCode?: string;
/**
* Whether the notification can be remove.
*
* @type { ?boolean }
* @default true
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since 8
*/
/**
* Whether the notification can be remove.
*
* @permission ohos.permission.SET_UNREMOVABLE_NOTIFICATION
* @type { ?boolean }
* @default true
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
isRemoveAllowed?: boolean;
/**
* Notification source. enum SourceType
*
* @type { ?number }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly source?: number;
/**
* Notification template.
*
* @type { ?NotificationTemplate }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
template?: NotificationTemplate;
/**
* Distributed notification options. Not supported currently.
*
* @type { ?DistributedOptions }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
distributedOption?: DistributedOptions;
/**
* The device ID of the notification source.
*
* @type { ?string }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly deviceId?: string;
/**
* Notification flags.
*
* @type { ?NotificationFlags }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly notificationFlags?: NotificationFlags;
/**
* WantAgent instance to which the notification will be redirected when it is removed.
* Currently, redirection to UIAbility is not supported. Only common events can be published (that is, actionType is set to 4).
*
* @type { ?WantAgent }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'9', '1.2':'20'}
* @arkts 1.1&1.2
*/
removalWantAgent?: WantAgent;
/**
* Number of notifications displayed on the application icon. If the badgeNumber is set to 0, badges are cleared;
* if the value is greater than 99, 99+ is displayed on the badge.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @since 9
*/
/**
* Number of notifications displayed on the application icon. If the badgeNumber is set to 0, badges are cleared;
* if the value is greater than 99, 99+ is displayed on the badge.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @crossplatform
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
badgeNumber?: number;
/**
* Whether the notification need to be agent display.
*
* @type { ?BundleOption }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
representativeBundle?: BundleOption;
/**
* Proxy identity of creation notification.
*
* @type { ?BundleOption }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly agentBundle?: BundleOption;
/**
* Unified aggregation of information across applications.
*
* @type { ?UnifiedGroupInfo }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
unifiedGroupInfo?: UnifiedGroupInfo;
/**
* Notification control flags.
*
* @type { ?number }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
notificationControlFlags?: number;
/**
* Application instance key.
*
* @type { ?string }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'15', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly appInstanceKey?: string;
/**
* Force distributed forwarding flag.
*
* @type { ?boolean }
* @default false
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'18', '1.2':'20'}
* @arkts 1.1&1.2
*/
forceDistributed?: boolean;
/**
* Distributed forwarding flag.
*
* @type { ?boolean }
* @default false
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'18', '1.2':'20'}
* @arkts 1.1&1.2
*/
notDistributed?: boolean;
}
/**
* Describes distributed notification options.
*
* @typedef DistributedOptions
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
export interface DistributedOptions {
/**
* Whether the notification is a distributed notification.
*
* @type { ?boolean }
* @default true
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
isDistributed?: boolean;
/**
* List of the devices to which the notification can be synchronized.
*
* @type { ?Array<string> }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
supportDisplayDevices?: Array<string>;
/**
* List of the devices on which the notification can be opened.
*
* @type { ?Array<string> }
* @syscap SystemCapability.Notification.Notification
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
supportOperateDevices?: Array<string>;
/**
* Obtains the remind mode of the notification. enum DeviceRemindType.
*
* @type { ?number }
* @readonly
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'8', '1.2':'20'}
* @arkts 1.1&1.2
*/
readonly remindType?: number;
}
/**
* Describes notification filter.
*
* @typedef NotificationFilter
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
export interface NotificationFilter {
/**
* BundleOption of the notification.
*
* @type { BundleOption }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
bundle: BundleOption;
/**
* Indicates the label and id of the notification.
*
* @type { notificationSubscribe.NotificationKey }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
notificationKey: notificationSubscribe.NotificationKey;
/**
* Indicates the additional information filter keys list.
*
* @type { ?Array<string> }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
extraInfoKeys?: Array<string>;
}
/**
* Describes notification check information.
*
* @typedef NotificationCheckRequest
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
export interface NotificationCheckRequest {
/**
* The notification content type.
*
* @type { notificationManager.ContentType }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
contentType: notificationManager.ContentType;
/**
* Type of the notification slot..
*
* @type { notificationManager.SlotType }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
slotType: notificationManager.SlotType;
/**
* Additional information of the notification.
*
* @type { Array<string> }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'11', '1.2':'20'}
* @arkts 1.1&1.2
*/
extraInfoKeys: Array<string>;
}
/**
* Unified aggregation of information across applications.
*
* @typedef UnifiedGroupInfo
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
export interface UnifiedGroupInfo {
/**
* The key is aggregated across applications.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
key?: string;
/**
* The title is aggregated across applications.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
title?: string;
/**
* The content is aggregated across applications.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
content?: string;
/**
* Aggregation scenario name.
*
* @type { ?string }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since arkts {'1.1':'12', '1.2':'20'}
* @arkts 1.1&1.2
*/
sceneName?: string;
/**
* Other information is aggregated across applications.
*
* @type { ?object }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since 12
*/
extraInfo?: { [key: string]: any };
/**
* Other information is aggregated across applications.
*
* @type { ?object }
* @syscap SystemCapability.Notification.Notification
* @systemapi
* @since 20
* @arkts 1.2
*/
extraInfo?: Record<string, Object>;
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。