/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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. */ import type { SystemSubtypes } from './SystemSubtypes'; import type { ResourceRootFolder } from './ResourceRootFolder'; /** * * @export * @interface ResourceRootSystem */ export interface ResourceRootSystem { /** * * @type {string} * @memberof ResourceRootSystem */ 'id': string; /** * * @type {string} * @memberof ResourceRootSystem */ 'type': ResourceRootSystemTypeEnum; /** * * @type {string} * @memberof ResourceRootSystem */ 'createdAt': string; /** * * @type {string} * @memberof ResourceRootSystem */ 'modifiedAt': string; /** * * @type {boolean} * @memberof ResourceRootSystem */ 'isPrivate': boolean; /** * The timestamp of when the last descendant resource was added * @type {string} * @memberof ResourceRootSystem */ 'lastResourceAddedAt'?: string | null; /** * * @type {ResourceRootFolder} * @memberof ResourceRootSystem */ 'folder': ResourceRootFolder; /** * * @type {SystemSubtypes} * @memberof ResourceRootSystem */ 'subtype': SystemSubtypes; } /** * @export */ export declare const ResourceRootSystemTypeEnum: { readonly System: "SYSTEM"; }; export type ResourceRootSystemTypeEnum = typeof ResourceRootSystemTypeEnum[keyof typeof ResourceRootSystemTypeEnum]; /** * Check if a given object implements the ResourceRootSystem interface. */ export declare function instanceOfResourceRootSystem(value: object): value is ResourceRootSystem; export declare function ResourceRootSystemFromJSON(json: any): ResourceRootSystem; export declare function ResourceRootSystemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceRootSystem; export declare function ResourceRootSystemToJSON(json: any): ResourceRootSystem; export declare function ResourceRootSystemToJSONTyped(value?: ResourceRootSystem | null, ignoreDiscriminator?: boolean): any;