/** * 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 { ProjectStorageLocationUsage } from './ProjectStorageLocationUsage'; /** * Provides information about file allocations and limits for each storage location associated with a single project. * @export * @interface ProjectStorageUsage */ export interface ProjectStorageUsage { /** * The ID of the project * @type {string} * @memberof ProjectStorageUsage */ projectId?: string; /** * * @type {Array} * @memberof ProjectStorageUsage */ locations?: Array; } /** * Check if a given object implements the ProjectStorageUsage interface. */ export declare function instanceOfProjectStorageUsage(value: object): value is ProjectStorageUsage; export declare function ProjectStorageUsageFromJSON(json: any): ProjectStorageUsage; export declare function ProjectStorageUsageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProjectStorageUsage; export declare function ProjectStorageUsageToJSON(json: any): ProjectStorageUsage; export declare function ProjectStorageUsageToJSONTyped(value?: ProjectStorageUsage | null, ignoreDiscriminator?: boolean): any;