/** * 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 session counts for all-time and the selected date range * @export * @interface AnalyticsToplineResponseSessions */ export interface AnalyticsToplineResponseSessions { /** * Total number of sessions all-time * @type {number} * @memberof AnalyticsToplineResponseSessions */ allTime: number; /** * Number of sessions in the selected date range * @type {number} * @memberof AnalyticsToplineResponseSessions */ inRange: number; } export declare function AnalyticsToplineResponseSessionsFromJSON(json: any): AnalyticsToplineResponseSessions; export declare function AnalyticsToplineResponseSessionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): AnalyticsToplineResponseSessions; export declare function AnalyticsToplineResponseSessionsToJSON(value?: AnalyticsToplineResponseSessions | null): any;