/** * SmartyMeet Dev03 API REST * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.1 * Contact: developer@smartymeet.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Counts for a single category within a dimension. `total` is the * tenant-wide count of resources in this category. `seen` is how many * of those the authenticated user has acknowledged (state.isSeen=true). * `unseen` is `total - seen`, synthesised by the backend so clients * do not have to compute it. * @export * @interface AggregateCountsBucketSchema */ export interface AggregateCountsBucketSchema { /** * Total resources in this category, tenant-wide. * @type {number} * @memberof AggregateCountsBucketSchema */ total?: number; /** * Resources in this category the authenticated user has marked seen. * @type {number} * @memberof AggregateCountsBucketSchema */ seen?: number; /** * total minus seen, clamped at 0. * @type {number} * @memberof AggregateCountsBucketSchema */ unseen?: number; } /** * Check if a given object implements the AggregateCountsBucketSchema interface. */ export declare function instanceOfAggregateCountsBucketSchema(value: object): value is AggregateCountsBucketSchema; export declare function AggregateCountsBucketSchemaFromJSON(json: any): AggregateCountsBucketSchema; export declare function AggregateCountsBucketSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): AggregateCountsBucketSchema; export declare function AggregateCountsBucketSchemaToJSON(json: any): AggregateCountsBucketSchema; export declare function AggregateCountsBucketSchemaToJSONTyped(value?: AggregateCountsBucketSchema | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=AggregateCountsBucketSchema.d.ts.map