UNPKG

umbraco-management-api-client

Version:

TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)

58 lines (57 loc) 2 kB
/** * Umbraco Management API * This shows all APIs available in this version of Umbraco - including all the legacy apis that are available for backward compatibility * * The version of the OpenAPI document: Latest * * * 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 { FileSystemFolderModel } from './FileSystemFolderModel'; /** * * @export * @interface FileSystemTreeItemPresentationModel */ export interface FileSystemTreeItemPresentationModel { /** * * @type {boolean} * @memberof FileSystemTreeItemPresentationModel */ hasChildren: boolean; /** * * @type {string} * @memberof FileSystemTreeItemPresentationModel */ name: string; /** * * @type {string} * @memberof FileSystemTreeItemPresentationModel */ path: string; /** * * @type {FileSystemFolderModel} * @memberof FileSystemTreeItemPresentationModel */ parent?: FileSystemFolderModel | null; /** * * @type {boolean} * @memberof FileSystemTreeItemPresentationModel */ isFolder: boolean; } /** * Check if a given object implements the FileSystemTreeItemPresentationModel interface. */ export declare function instanceOfFileSystemTreeItemPresentationModel(value: object): value is FileSystemTreeItemPresentationModel; export declare function FileSystemTreeItemPresentationModelFromJSON(json: any): FileSystemTreeItemPresentationModel; export declare function FileSystemTreeItemPresentationModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): FileSystemTreeItemPresentationModel; export declare function FileSystemTreeItemPresentationModelToJSON(json: any): FileSystemTreeItemPresentationModel; export declare function FileSystemTreeItemPresentationModelToJSONTyped(value?: FileSystemTreeItemPresentationModel | null, ignoreDiscriminator?: boolean): any;