/** * 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 brand condition option for EVENT_ACTION_DEVICE_BRAND_CONDITION. * @export * @interface DeviceBrandConditionOption */ export interface DeviceBrandConditionOption { /** * * @type {string} * @memberof DeviceBrandConditionOption */ id?: string; /** * * @type {string} * @memberof DeviceBrandConditionOption */ name?: string; /** * * @type {string} * @memberof DeviceBrandConditionOption */ nextStepId?: string; /** * Allowed values for device brand routing conditions. * @type {DeviceBrandConditionOptionValueEnum} * @memberof DeviceBrandConditionOption */ value?: DeviceBrandConditionOptionValueEnum; } /** * @export */ export declare const DeviceBrandConditionOptionValueEnum: { readonly DeviceBrandConditionValueUnspecified: "DEVICE_BRAND_CONDITION_VALUE_UNSPECIFIED"; readonly DeviceBrandConditionValueApple: "DEVICE_BRAND_CONDITION_VALUE_APPLE"; readonly DeviceBrandConditionValueSamsung: "DEVICE_BRAND_CONDITION_VALUE_SAMSUNG"; readonly DeviceBrandConditionValueGoogle: "DEVICE_BRAND_CONDITION_VALUE_GOOGLE"; readonly DeviceBrandConditionValueHuawei: "DEVICE_BRAND_CONDITION_VALUE_HUAWEI"; readonly DeviceBrandConditionValueXiaomi: "DEVICE_BRAND_CONDITION_VALUE_XIAOMI"; readonly DeviceBrandConditionValueOneplus: "DEVICE_BRAND_CONDITION_VALUE_ONEPLUS"; }; export type DeviceBrandConditionOptionValueEnum = typeof DeviceBrandConditionOptionValueEnum[keyof typeof DeviceBrandConditionOptionValueEnum]; /** * Check if a given object implements the DeviceBrandConditionOption interface. */ export declare function instanceOfDeviceBrandConditionOption(value: object): value is DeviceBrandConditionOption; export declare function DeviceBrandConditionOptionFromJSON(json: any): DeviceBrandConditionOption; export declare function DeviceBrandConditionOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceBrandConditionOption; export declare function DeviceBrandConditionOptionToJSON(json: any): DeviceBrandConditionOption; export declare function DeviceBrandConditionOptionToJSONTyped(value?: DeviceBrandConditionOption | null, ignoreDiscriminator?: boolean): any;