/** * 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 { PwaIconDto } from './pwa-icon-dto'; /** * * @export * @interface PwaConfigurationDto */ export interface PwaConfigurationDto { /** * * @type {string} * @memberof PwaConfigurationDto */ name: string; /** * * @type {string} * @memberof PwaConfigurationDto */ shortName: string; /** * * @type {string} * @memberof PwaConfigurationDto */ themeColor: string; /** * * @type {string} * @memberof PwaConfigurationDto */ backgroundColor: string; /** * * @type {string} * @memberof PwaConfigurationDto */ favicon: string; /** * * @type {Array} * @memberof PwaConfigurationDto */ icons: Array; }