/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 ProjectSettingsDesignWidget */ export interface ProjectSettingsDesignWidget { /** * Background color of the widget * @type {string} * @memberof ProjectSettingsDesignWidget */ backgroundColor?: string; /** * Border style of the widget * @type {string} * @memberof ProjectSettingsDesignWidget */ border?: string; /** * Border radius of the widget in pixels * @type {number} * @memberof ProjectSettingsDesignWidget */ radius?: number; /** * Text color used in the widget * @type {string} * @memberof ProjectSettingsDesignWidget */ textColor?: string; /** * Color theme of the widget (e.g. light, dark, auto) * @type {string} * @memberof ProjectSettingsDesignWidget */ theme?: string; } export declare function ProjectSettingsDesignWidgetFromJSON(json: any): ProjectSettingsDesignWidget; export declare function ProjectSettingsDesignWidgetFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsDesignWidget; export declare function ProjectSettingsDesignWidgetToJSON(value?: ProjectSettingsDesignWidget | null): any;