/** * 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. */ /** * Allowed values for device type routing conditions. * @export */ export declare const DeviceTypeConditionValue: { readonly DeviceTypeConditionValueUnspecified: "DEVICE_TYPE_CONDITION_VALUE_UNSPECIFIED"; readonly DeviceTypeConditionValueMobile: "DEVICE_TYPE_CONDITION_VALUE_MOBILE"; readonly DeviceTypeConditionValueDesktop: "DEVICE_TYPE_CONDITION_VALUE_DESKTOP"; readonly DeviceTypeConditionValueTablet: "DEVICE_TYPE_CONDITION_VALUE_TABLET"; readonly DeviceTypeConditionValueUnknown: "DEVICE_TYPE_CONDITION_VALUE_UNKNOWN"; }; export type DeviceTypeConditionValue = typeof DeviceTypeConditionValue[keyof typeof DeviceTypeConditionValue]; export declare function instanceOfDeviceTypeConditionValue(value: any): boolean; export declare function DeviceTypeConditionValueFromJSON(json: any): DeviceTypeConditionValue; export declare function DeviceTypeConditionValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceTypeConditionValue; export declare function DeviceTypeConditionValueToJSON(value?: DeviceTypeConditionValue | null): any; export declare function DeviceTypeConditionValueToJSONTyped(value: any, ignoreDiscriminator: boolean): DeviceTypeConditionValue;