/** * 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 browser routing conditions. * @export */ export declare const DeviceBrowserConditionValue: { readonly DeviceBrowserConditionValueUnspecified: "DEVICE_BROWSER_CONDITION_VALUE_UNSPECIFIED"; readonly DeviceBrowserConditionValueChrome: "DEVICE_BROWSER_CONDITION_VALUE_CHROME"; readonly DeviceBrowserConditionValueSafari: "DEVICE_BROWSER_CONDITION_VALUE_SAFARI"; readonly DeviceBrowserConditionValueFirefox: "DEVICE_BROWSER_CONDITION_VALUE_FIREFOX"; readonly DeviceBrowserConditionValueEdge: "DEVICE_BROWSER_CONDITION_VALUE_EDGE"; readonly DeviceBrowserConditionValueOpera: "DEVICE_BROWSER_CONDITION_VALUE_OPERA"; readonly DeviceBrowserConditionValueSamsungBrowser: "DEVICE_BROWSER_CONDITION_VALUE_SAMSUNG_BROWSER"; }; export type DeviceBrowserConditionValue = typeof DeviceBrowserConditionValue[keyof typeof DeviceBrowserConditionValue]; export declare function instanceOfDeviceBrowserConditionValue(value: any): boolean; export declare function DeviceBrowserConditionValueFromJSON(json: any): DeviceBrowserConditionValue; export declare function DeviceBrowserConditionValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceBrowserConditionValue; export declare function DeviceBrowserConditionValueToJSON(value?: DeviceBrowserConditionValue | null): any; export declare function DeviceBrowserConditionValueToJSONTyped(value: any, ignoreDiscriminator: boolean): DeviceBrowserConditionValue;