UNPKG

umbraco-management-api-client

Version:

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

52 lines (51 loc) 1.75 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 PartialViewItemResponseModel */ export interface PartialViewItemResponseModel { /** * * @type {string} * @memberof PartialViewItemResponseModel */ path: string; /** * * @type {string} * @memberof PartialViewItemResponseModel */ name: string; /** * * @type {FileSystemFolderModel} * @memberof PartialViewItemResponseModel */ parent?: FileSystemFolderModel | null; /** * * @type {boolean} * @memberof PartialViewItemResponseModel */ isFolder: boolean; } /** * Check if a given object implements the PartialViewItemResponseModel interface. */ export declare function instanceOfPartialViewItemResponseModel(value: object): value is PartialViewItemResponseModel; export declare function PartialViewItemResponseModelFromJSON(json: any): PartialViewItemResponseModel; export declare function PartialViewItemResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartialViewItemResponseModel; export declare function PartialViewItemResponseModelToJSON(json: any): PartialViewItemResponseModel; export declare function PartialViewItemResponseModelToJSONTyped(value?: PartialViewItemResponseModel | null, ignoreDiscriminator?: boolean): any;