/** * 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 { DeviceBrandConditionOption } from './DeviceBrandConditionOption'; /** * * @export * @interface DeviceBrandConditionPayload */ export interface DeviceBrandConditionPayload { /** * * @type {string} * @memberof DeviceBrandConditionPayload */ elseNextStepId?: string; /** * * @type {Array} * @memberof DeviceBrandConditionPayload */ options?: Array; } /** * Check if a given object implements the DeviceBrandConditionPayload interface. */ export declare function instanceOfDeviceBrandConditionPayload(value: object): value is DeviceBrandConditionPayload; export declare function DeviceBrandConditionPayloadFromJSON(json: any): DeviceBrandConditionPayload; export declare function DeviceBrandConditionPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): DeviceBrandConditionPayload; export declare function DeviceBrandConditionPayloadToJSON(json: any): DeviceBrandConditionPayload; export declare function DeviceBrandConditionPayloadToJSONTyped(value?: DeviceBrandConditionPayload | null, ignoreDiscriminator?: boolean): any;