UNPKG

umbraco-management-api-client

Version:

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

52 lines (51 loc) 1.68 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 PartialViewResponseModel */ export interface PartialViewResponseModel { /** * * @type {string} * @memberof PartialViewResponseModel */ path: string; /** * * @type {string} * @memberof PartialViewResponseModel */ name: string; /** * * @type {FileSystemFolderModel} * @memberof PartialViewResponseModel */ parent?: FileSystemFolderModel | null; /** * * @type {string} * @memberof PartialViewResponseModel */ content: string; } /** * Check if a given object implements the PartialViewResponseModel interface. */ export declare function instanceOfPartialViewResponseModel(value: object): value is PartialViewResponseModel; export declare function PartialViewResponseModelFromJSON(json: any): PartialViewResponseModel; export declare function PartialViewResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): PartialViewResponseModel; export declare function PartialViewResponseModelToJSON(json: any): PartialViewResponseModel; export declare function PartialViewResponseModelToJSONTyped(value?: PartialViewResponseModel | null, ignoreDiscriminator?: boolean): any;