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 * Indicates the description of transfer results for continuation. 18 * 19 * @typedef ContinuationResult 20 * @syscap SystemCapability.Ability.DistributedAbilityManager 21 * @since 8 22 */ 23/** 24 * Indicates the description of transfer results for continuation. 25 * 26 * @typedef ContinuationResult 27 * @syscap SystemCapability.Ability.DistributedAbilityManager 28 * @atomicservice 29 * @since 11 30 */ 31export interface ContinuationResult { 32 /** 33 * the information about the selected device id. 34 * 35 * @type { string } 36 * @syscap SystemCapability.Ability.DistributedAbilityManager 37 * @since 8 38 */ 39 /** 40 * the information about the selected device id. 41 * 42 * @type { string } 43 * @syscap SystemCapability.Ability.DistributedAbilityManager 44 * @atomicservice 45 * @since 11 46 */ 47 id: string; 48 49 /** 50 * the information about the selected device type. 51 * 52 * @type { string } 53 * @syscap SystemCapability.Ability.DistributedAbilityManager 54 * @since 8 55 */ 56 /** 57 * the information about the selected device type. 58 * 59 * @type { string } 60 * @syscap SystemCapability.Ability.DistributedAbilityManager 61 * @atomicservice 62 * @since 11 63 */ 64 type: string; 65 66 /** 67 * Indicates the name of the selected device. 68 * 69 * @type { string } 70 * @syscap SystemCapability.Ability.DistributedAbilityManager 71 * @since 8 72 */ 73 /** 74 * Indicates the name of the selected device. 75 * 76 * @type { string } 77 * @syscap SystemCapability.Ability.DistributedAbilityManager 78 * @atomicservice 79 * @since 11 80 */ 81 name: string; 82} 83