/** * 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 { RootType } from './RootType'; import type { ResourceRootFolder } from './ResourceRootFolder'; /** * * @export * @interface ResourceRootBase */ export interface ResourceRootBase { /** * * @type {string} * @memberof ResourceRootBase */ 'id': string; /** * * @type {RootType} * @memberof ResourceRootBase */ 'type': RootType; /** * * @type {string} * @memberof ResourceRootBase */ 'createdAt': string; /** * * @type {string} * @memberof ResourceRootBase */ 'modifiedAt': string; /** * * @type {boolean} * @memberof ResourceRootBase */ 'isPrivate': boolean; /** * The timestamp of when the last descendant resource was added * @type {string} * @memberof ResourceRootBase */ 'lastResourceAddedAt'?: string | null; /** * * @type {ResourceRootFolder} * @memberof ResourceRootBase */ 'folder': ResourceRootFolder; } /** * Check if a given object implements the ResourceRootBase interface. */ export declare function instanceOfResourceRootBase(value: object): value is ResourceRootBase; export declare function ResourceRootBaseFromJSON(json: any): ResourceRootBase; export declare function ResourceRootBaseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceRootBase; export declare function ResourceRootBaseToJSON(json: any): ResourceRootBase; export declare function ResourceRootBaseToJSONTyped(value?: ResourceRootBase | null, ignoreDiscriminator?: boolean): any;