/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Describes an aggregate of file actions (e.g. downloads/uploads) and (unique) users count for a specific time frame * @export * @interface FilesCountStatistics */ export interface FilesCountStatistics { /** * The start timestamp of the time frame this bucket represents (inclusive) * @type {string} * @memberof FilesCountStatistics */ rangeStart?: string; /** * The end timestamp of the time frame this bucket represents (exclusive) * @type {string} * @memberof FilesCountStatistics */ rangeEnd?: string; /** * The number of files uploaded or downloaded in this time frame * @type {number} * @memberof FilesCountStatistics */ filesCount?: number; /** * The number of distinct users that performed a download or upload in this time frame * @type {number} * @memberof FilesCountStatistics */ usersCount?: number; } /** * Check if a given object implements the FilesCountStatistics interface. */ export declare function instanceOfFilesCountStatistics(value: object): value is FilesCountStatistics; export declare function FilesCountStatisticsFromJSON(json: any): FilesCountStatistics; export declare function FilesCountStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilesCountStatistics; export declare function FilesCountStatisticsToJSON(json: any): FilesCountStatistics; export declare function FilesCountStatisticsToJSONTyped(value?: FilesCountStatistics | null, ignoreDiscriminator?: boolean): any;