/* tslint:disable */ /* eslint-disable */ /** * setup/general * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Response representation of the dashboard configuration */ export interface DashboardConfiguration { /** * The date dashboard configuration was created */ creationDate?: string; /** * The encoded key of the dashboard configuration, auto generated, unique */ encodedKey?: string; /** * Response representation of the dashboard option */ name?: DashboardConfigurationNameEnum; } export const DashboardConfigurationNameEnum = { LatestActivity: 'LATEST_ACTIVITY', Tasks: 'TASKS', FavouriteViews: 'FAVOURITE_VIEWS', Indicators: 'INDICATORS', CurrentTills: 'CURRENT_TILLS', Clients: 'CLIENTS', UpcomingRepayments: 'UPCOMING_REPAYMENTS', None: 'NONE', } as const; export type DashboardConfigurationNameEnum = (typeof DashboardConfigurationNameEnum)[keyof typeof DashboardConfigurationNameEnum];