/** * 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 platform condition option for EVENT_ACTION_DEVICE_PLATFORM_CONDITION. * @export * @interface DevicePlatformConditionOption */ export interface DevicePlatformConditionOption { /** * * @type {string} * @memberof DevicePlatformConditionOption */ id?: string; /** * * @type {string} * @memberof DevicePlatformConditionOption */ name?: string; /** * * @type {string} * @memberof DevicePlatformConditionOption */ nextStepId?: string; /** * Allowed values for device platform routing conditions. * @type {DevicePlatformConditionOptionValueEnum} * @memberof DevicePlatformConditionOption */ value?: DevicePlatformConditionOptionValueEnum; } /** * @export */ export declare const DevicePlatformConditionOptionValueEnum: { readonly DevicePlatformConditionValueUnspecified: "DEVICE_PLATFORM_CONDITION_VALUE_UNSPECIFIED"; readonly DevicePlatformConditionValueIos: "DEVICE_PLATFORM_CONDITION_VALUE_IOS"; readonly DevicePlatformConditionValueAndroid: "DEVICE_PLATFORM_CONDITION_VALUE_ANDROID"; readonly DevicePlatformConditionValueWindows: "DEVICE_PLATFORM_CONDITION_VALUE_WINDOWS"; readonly DevicePlatformConditionValueMacos: "DEVICE_PLATFORM_CONDITION_VALUE_MACOS"; readonly DevicePlatformConditionValueLinux: "DEVICE_PLATFORM_CONDITION_VALUE_LINUX"; readonly DevicePlatformConditionValueChromeos: "DEVICE_PLATFORM_CONDITION_VALUE_CHROMEOS"; }; export type DevicePlatformConditionOptionValueEnum = typeof DevicePlatformConditionOptionValueEnum[keyof typeof DevicePlatformConditionOptionValueEnum]; /** * Check if a given object implements the DevicePlatformConditionOption interface. */ export declare function instanceOfDevicePlatformConditionOption(value: object): value is DevicePlatformConditionOption; export declare function DevicePlatformConditionOptionFromJSON(json: any): DevicePlatformConditionOption; export declare function DevicePlatformConditionOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DevicePlatformConditionOption; export declare function DevicePlatformConditionOptionToJSON(json: any): DevicePlatformConditionOption; export declare function DevicePlatformConditionOptionToJSONTyped(value?: DevicePlatformConditionOption | null, ignoreDiscriminator?: boolean): any;