/** * 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 { DeviceInput } from './DeviceInput'; /** * * @export * @interface EventsServiceUpdateDeviceBody */ export interface EventsServiceUpdateDeviceBody { /** * * @type {DeviceInput} * @memberof EventsServiceUpdateDeviceBody */ deviceInput?: DeviceInput; } /** * Check if a given object implements the EventsServiceUpdateDeviceBody interface. */ export declare function instanceOfEventsServiceUpdateDeviceBody(value: object): value is EventsServiceUpdateDeviceBody; export declare function EventsServiceUpdateDeviceBodyFromJSON(json: any): EventsServiceUpdateDeviceBody; export declare function EventsServiceUpdateDeviceBodyFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventsServiceUpdateDeviceBody; export declare function EventsServiceUpdateDeviceBodyToJSON(json: any): EventsServiceUpdateDeviceBody; export declare function EventsServiceUpdateDeviceBodyToJSONTyped(value?: EventsServiceUpdateDeviceBody | null, ignoreDiscriminator?: boolean): any;