/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface DeviceConfigurationContentDto */ export interface DeviceConfigurationContentDto { /** * * @type {string} * @memberof DeviceConfigurationContentDto */ type: DeviceConfigurationContentDtoTypeEnum; /** * * @type {any} * @memberof DeviceConfigurationContentDto */ data?: any; } /** * @export * @enum {string} */ export declare enum DeviceConfigurationContentDtoTypeEnum { Webview = "webview", Application = "application", CheckinOld = "checkinOld" }