/** * 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. */ import { SeoConfigurationDto } from './seo-configuration-dto'; import { SocketConnectionDto } from './socket-connection-dto'; import { WidgetDto } from './widget-dto'; /** * * @export * @interface ApplicationContentDto */ export interface ApplicationContentDto { /** * * @type {string} * @memberof ApplicationContentDto */ path: string; /** * * @type {WidgetDto} * @memberof ApplicationContentDto */ content: WidgetDto; /** * * @type {Array} * @memberof ApplicationContentDto */ socketConnections?: Array; /** * * @type {boolean} * @memberof ApplicationContentDto */ authenticationRequired?: boolean; /** * * @type {string} * @memberof ApplicationContentDto */ layout?: string; /** * * @type {SeoConfigurationDto} * @memberof ApplicationContentDto */ seo?: SeoConfigurationDto; }