/** * 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. */ /** * Aggregate user counts for all-time and the selected date range * @export * @interface AnalyticsToplineResponseUsers */ export interface AnalyticsToplineResponseUsers { /** * Total number of users all-time * @type {number} * @memberof AnalyticsToplineResponseUsers */ allTime: number; /** * Number of users in the selected date range * @type {number} * @memberof AnalyticsToplineResponseUsers */ inRange: number; } export declare function AnalyticsToplineResponseUsersFromJSON(json: any): AnalyticsToplineResponseUsers; export declare function AnalyticsToplineResponseUsersFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsToplineResponseUsers; export declare function AnalyticsToplineResponseUsersToJSON(value?: AnalyticsToplineResponseUsers | null): any;