/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * An organizational bucket that groups links and other directories into a hierarchical folder structure * within a workspace. * @export * @interface Directory */ export interface Directory { /** * * @type {Date} * @memberof Directory */ readonly createdAt?: Date; /** * * @type {string} * @memberof Directory */ id?: string; /** * * @type {string} * @memberof Directory */ name?: string; /** * The ID of the parent directory (UUID) * If not set, the directory is at the root level. * @type {string} * @memberof Directory */ parentDirectoryId?: string; /** * Full hierarchical path separated by slashes, computed server-side * @type {string} * @memberof Directory */ readonly path?: string; /** * * @type {Date} * @memberof Directory */ readonly updatedAt?: Date; /** * * @type {string} * @memberof Directory */ workspaceId?: string; } /** * Check if a given object implements the Directory interface. */ export declare function instanceOfDirectory(value: object): value is Directory; export declare function DirectoryFromJSON(json: any): Directory; export declare function DirectoryFromJSONTyped(json: any, ignoreDiscriminator: boolean): Directory; export declare function DirectoryToJSON(json: any): Directory; export declare function DirectoryToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;