/** * 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 DeviceBrandConditionTraceOption */ export interface DeviceBrandConditionTraceOption { /** * * @type {string} * @memberof DeviceBrandConditionTraceOption */ deviceBrand?: string; /** * * @type {boolean} * @memberof DeviceBrandConditionTraceOption */ hasRoute?: boolean; /** * * @type {string} * @memberof DeviceBrandConditionTraceOption */ id?: string; /** * * @type {string} * @memberof DeviceBrandConditionTraceOption */ name?: string; } /** * Check if a given object implements the DeviceBrandConditionTraceOption interface. */ export declare function instanceOfDeviceBrandConditionTraceOption(value: object): value is DeviceBrandConditionTraceOption; export declare function DeviceBrandConditionTraceOptionFromJSON(json: any): DeviceBrandConditionTraceOption; export declare function DeviceBrandConditionTraceOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceBrandConditionTraceOption; export declare function DeviceBrandConditionTraceOptionToJSON(json: any): DeviceBrandConditionTraceOption; export declare function DeviceBrandConditionTraceOptionToJSONTyped(value?: DeviceBrandConditionTraceOption | null, ignoreDiscriminator?: boolean): any;