/** * 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 { ResourceRootFolder } from './ResourceRootFolder'; import type { IntegrationType } from './IntegrationType'; /** * * @export * @interface ResourceRootDetail */ export interface ResourceRootDetail { /** * * @type {string} * @memberof ResourceRootDetail */ 'id': string; /** * * @type {string} * @memberof ResourceRootDetail */ 'type': ResourceRootDetailTypeEnum; /** * * @type {string} * @memberof ResourceRootDetail */ 'createdAt': string; /** * * @type {string} * @memberof ResourceRootDetail */ 'modifiedAt': string; /** * * @type {boolean} * @memberof ResourceRootDetail */ 'isPrivate': boolean; /** * The timestamp of when the last descendant resource was added * @type {string} * @memberof ResourceRootDetail */ 'lastResourceAddedAt'?: string | null; /** * * @type {ResourceRootFolder} * @memberof ResourceRootDetail */ 'folder': ResourceRootFolder; /** * * @type {IntegrationType} * @memberof ResourceRootDetail */ 'subtype': IntegrationType; } /** * @export */ export declare const ResourceRootDetailTypeEnum: { readonly Integration: "INTEGRATION"; }; export type ResourceRootDetailTypeEnum = typeof ResourceRootDetailTypeEnum[keyof typeof ResourceRootDetailTypeEnum]; /** * Check if a given object implements the ResourceRootDetail interface. */ export declare function instanceOfResourceRootDetail(value: object): value is ResourceRootDetail; export declare function ResourceRootDetailFromJSON(json: any): ResourceRootDetail; export declare function ResourceRootDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceRootDetail; export declare function ResourceRootDetailToJSON(json: any): ResourceRootDetail; export declare function ResourceRootDetailToJSONTyped(value?: ResourceRootDetail | null, ignoreDiscriminator?: boolean): any;