/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { DevicePlatformConditionTraceOption } from './DevicePlatformConditionTraceOption'; /** * DevicePlatformConditionTraceData stores device platform routing metadata. * @export * @interface DevicePlatformConditionTraceData */ export interface DevicePlatformConditionTraceData { /** * * @type {boolean} * @memberof DevicePlatformConditionTraceData */ hasElse?: boolean; /** * * @type {Array} * @memberof DevicePlatformConditionTraceData */ options?: Array; /** * * @type {string} * @memberof DevicePlatformConditionTraceData */ platformName?: string; } /** * Check if a given object implements the DevicePlatformConditionTraceData interface. */ export declare function instanceOfDevicePlatformConditionTraceData(value: object): value is DevicePlatformConditionTraceData; export declare function DevicePlatformConditionTraceDataFromJSON(json: any): DevicePlatformConditionTraceData; export declare function DevicePlatformConditionTraceDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): DevicePlatformConditionTraceData; export declare function DevicePlatformConditionTraceDataToJSON(json: any): DevicePlatformConditionTraceData; export declare function DevicePlatformConditionTraceDataToJSONTyped(value?: DevicePlatformConditionTraceData | null, ignoreDiscriminator?: boolean): any;