/** * 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. */ /** * Device type condition option for EVENT_ACTION_DEVICE_TYPE_CONDITION. * @export * @interface DeviceTypeConditionOption */ export interface DeviceTypeConditionOption { /** * * @type {string} * @memberof DeviceTypeConditionOption */ id?: string; /** * * @type {string} * @memberof DeviceTypeConditionOption */ name?: string; /** * * @type {string} * @memberof DeviceTypeConditionOption */ nextStepId?: string; /** * Allowed values for device type routing conditions. * @type {DeviceTypeConditionOptionValueEnum} * @memberof DeviceTypeConditionOption */ value?: DeviceTypeConditionOptionValueEnum; } /** * @export */ export declare const DeviceTypeConditionOptionValueEnum: { 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 DeviceTypeConditionOptionValueEnum = typeof DeviceTypeConditionOptionValueEnum[keyof typeof DeviceTypeConditionOptionValueEnum]; /** * Check if a given object implements the DeviceTypeConditionOption interface. */ export declare function instanceOfDeviceTypeConditionOption(value: object): value is DeviceTypeConditionOption; export declare function DeviceTypeConditionOptionFromJSON(json: any): DeviceTypeConditionOption; export declare function DeviceTypeConditionOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceTypeConditionOption; export declare function DeviceTypeConditionOptionToJSON(json: any): DeviceTypeConditionOption; export declare function DeviceTypeConditionOptionToJSONTyped(value?: DeviceTypeConditionOption | null, ignoreDiscriminator?: boolean): any;