1/* 2 * Copyright (c) 2022-2023 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"), 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16/** 17 * @file 18 * @kit AbilityKit 19 */ 20 21/** 22 * Indicates the description of transfer results for continuation. 23 * 24 * @typedef ContinuationResult 25 * @syscap SystemCapability.Ability.DistributedAbilityManager 26 * @since 8 27 */ 28/** 29 * Indicates the description of transfer results for continuation. 30 * 31 * @typedef ContinuationResult 32 * @syscap SystemCapability.Ability.DistributedAbilityManager 33 * @atomicservice 34 * @since 11 35 */ 36export interface ContinuationResult { 37 /** 38 * the information about the selected device id. 39 * 40 * @type { string } 41 * @syscap SystemCapability.Ability.DistributedAbilityManager 42 * @since 8 43 */ 44 /** 45 * the information about the selected device id. 46 * 47 * @type { string } 48 * @syscap SystemCapability.Ability.DistributedAbilityManager 49 * @atomicservice 50 * @since 11 51 */ 52 id: string; 53 54 /** 55 * the information about the selected device type. 56 * 57 * @type { string } 58 * @syscap SystemCapability.Ability.DistributedAbilityManager 59 * @since 8 60 */ 61 /** 62 * the information about the selected device type. 63 * 64 * @type { string } 65 * @syscap SystemCapability.Ability.DistributedAbilityManager 66 * @atomicservice 67 * @since 11 68 */ 69 type: string; 70 71 /** 72 * Indicates the name of the selected device. 73 * 74 * @type { string } 75 * @syscap SystemCapability.Ability.DistributedAbilityManager 76 * @since 8 77 */ 78 /** 79 * Indicates the name of the selected device. 80 * 81 * @type { string } 82 * @syscap SystemCapability.Ability.DistributedAbilityManager 83 * @atomicservice 84 * @since 11 85 */ 86 name: string; 87} 88