/** * 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 ActiveWeeklyDaysResult */ export interface ActiveWeeklyDaysResult { /** * Number of active days per week * @type {number} * @memberof ActiveWeeklyDaysResult */ nDays: number; /** * Number of user-weeks with this activity level * @type {number} * @memberof ActiveWeeklyDaysResult */ nUserWeeks: number; /** * Percentage of user-weeks with this activity level * @type {number} * @memberof ActiveWeeklyDaysResult */ pctUserWeeks: number; } export declare function ActiveWeeklyDaysResultFromJSON(json: any): ActiveWeeklyDaysResult; export declare function ActiveWeeklyDaysResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActiveWeeklyDaysResult; export declare function ActiveWeeklyDaysResultToJSON(value?: ActiveWeeklyDaysResult | null): any;