/** * 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. */ import { RetentionTrendResult } from './RetentionTrendResult'; /** * Weekly cohort retention data for all users and new users * @export * @interface AnalyticsEngagementResponseRetention */ export interface AnalyticsEngagementResponseRetention { /** * * @type {Array} * @memberof AnalyticsEngagementResponseRetention */ allUsers: Array; /** * * @type {Array} * @memberof AnalyticsEngagementResponseRetention */ newUsers: Array; } export declare function AnalyticsEngagementResponseRetentionFromJSON(json: any): AnalyticsEngagementResponseRetention; export declare function AnalyticsEngagementResponseRetentionFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsEngagementResponseRetention; export declare function AnalyticsEngagementResponseRetentionToJSON(value?: AnalyticsEngagementResponseRetention | null): any;