/** * 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 ProjectSettingsDesignButton */ export interface ProjectSettingsDesignButton { /** * Background color of the button * @type {string} * @memberof ProjectSettingsDesignButton */ background?: string; /** * Font color of the button text * @type {string} * @memberof ProjectSettingsDesignButton */ fontColor?: string; /** * Vertical padding of the button in pixels * @type {number} * @memberof ProjectSettingsDesignButton */ paddingHeight?: number; /** * Horizontal padding of the button in pixels * @type {number} * @memberof ProjectSettingsDesignButton */ paddingWidth?: number; /** * Border radius of the button in pixels * @type {number} * @memberof ProjectSettingsDesignButton */ radius?: number; } export declare function ProjectSettingsDesignButtonFromJSON(json: any): ProjectSettingsDesignButton; export declare function ProjectSettingsDesignButtonFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectSettingsDesignButton; export declare function ProjectSettingsDesignButtonToJSON(value?: ProjectSettingsDesignButton | null): any;