/** * 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 { DevicePlatformConditionOption } from './DevicePlatformConditionOption'; /** * * @export * @interface DevicePlatformConditionPayload */ export interface DevicePlatformConditionPayload { /** * * @type {string} * @memberof DevicePlatformConditionPayload */ elseNextStepId?: string; /** * * @type {Array} * @memberof DevicePlatformConditionPayload */ options?: Array; } /** * Check if a given object implements the DevicePlatformConditionPayload interface. */ export declare function instanceOfDevicePlatformConditionPayload(value: object): value is DevicePlatformConditionPayload; export declare function DevicePlatformConditionPayloadFromJSON(json: any): DevicePlatformConditionPayload; export declare function DevicePlatformConditionPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): DevicePlatformConditionPayload; export declare function DevicePlatformConditionPayloadToJSON(json: any): DevicePlatformConditionPayload; export declare function DevicePlatformConditionPayloadToJSONTyped(value?: DevicePlatformConditionPayload | null, ignoreDiscriminator?: boolean): any;