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