/** * 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. */ /** * * @export * @interface CreateDirectoryRequest */ export interface CreateDirectoryRequest { /** * The name of the directory. This field is required. * @type {string} * @memberof CreateDirectoryRequest */ name: string; /** * The ID of the parent directory (UUID) * If not provided, the directory will be created at the root level. * @type {string} * @memberof CreateDirectoryRequest */ parentDirectoryId?: string; } /** * Check if a given object implements the CreateDirectoryRequest interface. */ export declare function instanceOfCreateDirectoryRequest(value: object): value is CreateDirectoryRequest; export declare function CreateDirectoryRequestFromJSON(json: any): CreateDirectoryRequest; export declare function CreateDirectoryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateDirectoryRequest; export declare function CreateDirectoryRequestToJSON(json: any): CreateDirectoryRequest; export declare function CreateDirectoryRequestToJSONTyped(value?: CreateDirectoryRequest | null, ignoreDiscriminator?: boolean): any;