/** * 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. */ import type { FilesCountStatistics } from './FilesCountStatistics'; /** * Container for the statistics relative to file downloads or uploads for the past 12 months (Excluding the current month). * @export * @interface MonthlyFilesStatistics */ export interface MonthlyFilesStatistics { /** * The approximate time the files statistics were refreshed. If the statistics were not yet computed the value will not be set * @type {string} * @memberof MonthlyFilesStatistics */ lastUpdatedOn?: string; /** * The file count buckets ordered by month, always contains the past 12 months (No matter if statistics are computed or not) * @type {Array} * @memberof MonthlyFilesStatistics */ months?: Array; } /** * Check if a given object implements the MonthlyFilesStatistics interface. */ export declare function instanceOfMonthlyFilesStatistics(value: object): value is MonthlyFilesStatistics; export declare function MonthlyFilesStatisticsFromJSON(json: any): MonthlyFilesStatistics; export declare function MonthlyFilesStatisticsFromJSONTyped(json: any, ignoreDiscriminator: boolean): MonthlyFilesStatistics; export declare function MonthlyFilesStatisticsToJSON(json: any): MonthlyFilesStatistics; export declare function MonthlyFilesStatisticsToJSONTyped(value?: MonthlyFilesStatistics | null, ignoreDiscriminator?: boolean): any;