/** * 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 { DeviceTypeConditionOption } from './DeviceTypeConditionOption'; /** * * @export * @interface DeviceTypeConditionPayload */ export interface DeviceTypeConditionPayload { /** * * @type {string} * @memberof DeviceTypeConditionPayload */ elseNextStepId?: string; /** * * @type {Array} * @memberof DeviceTypeConditionPayload */ options?: Array; } /** * Check if a given object implements the DeviceTypeConditionPayload interface. */ export declare function instanceOfDeviceTypeConditionPayload(value: object): value is DeviceTypeConditionPayload; export declare function DeviceTypeConditionPayloadFromJSON(json: any): DeviceTypeConditionPayload; export declare function DeviceTypeConditionPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceTypeConditionPayload; export declare function DeviceTypeConditionPayloadToJSON(json: any): DeviceTypeConditionPayload; export declare function DeviceTypeConditionPayloadToJSONTyped(value?: DeviceTypeConditionPayload | null, ignoreDiscriminator?: boolean): any;