/** * 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. */ /** * * @export * @interface DevicePlatformConditionTraceOption */ export interface DevicePlatformConditionTraceOption { /** * * @type {boolean} * @memberof DevicePlatformConditionTraceOption */ hasRoute?: boolean; /** * * @type {string} * @memberof DevicePlatformConditionTraceOption */ id?: string; /** * * @type {string} * @memberof DevicePlatformConditionTraceOption */ name?: string; /** * * @type {string} * @memberof DevicePlatformConditionTraceOption */ platformName?: string; } /** * Check if a given object implements the DevicePlatformConditionTraceOption interface. */ export declare function instanceOfDevicePlatformConditionTraceOption(value: object): value is DevicePlatformConditionTraceOption; export declare function DevicePlatformConditionTraceOptionFromJSON(json: any): DevicePlatformConditionTraceOption; export declare function DevicePlatformConditionTraceOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DevicePlatformConditionTraceOption; export declare function DevicePlatformConditionTraceOptionToJSON(json: any): DevicePlatformConditionTraceOption; export declare function DevicePlatformConditionTraceOptionToJSONTyped(value?: DevicePlatformConditionTraceOption | null, ignoreDiscriminator?: boolean): any;