/** * 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. */ import type { DeviceBrowserConditionOption } from './DeviceBrowserConditionOption'; /** * * @export * @interface DeviceBrowserConditionPayload */ export interface DeviceBrowserConditionPayload { /** * * @type {string} * @memberof DeviceBrowserConditionPayload */ elseNextStepId?: string; /** * * @type {Array} * @memberof DeviceBrowserConditionPayload */ options?: Array; } /** * Check if a given object implements the DeviceBrowserConditionPayload interface. */ export declare function instanceOfDeviceBrowserConditionPayload(value: object): value is DeviceBrowserConditionPayload; export declare function DeviceBrowserConditionPayloadFromJSON(json: any): DeviceBrowserConditionPayload; export declare function DeviceBrowserConditionPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceBrowserConditionPayload; export declare function DeviceBrowserConditionPayloadToJSON(json: any): DeviceBrowserConditionPayload; export declare function DeviceBrowserConditionPayloadToJSONTyped(value?: DeviceBrowserConditionPayload | null, ignoreDiscriminator?: boolean): any;