UNPKG

umbraco-management-api-client

Version:

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

40 lines (39 loc) 1.63 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 CreatePartialViewFolderRequestModel */ export interface CreatePartialViewFolderRequestModel { /** * * @type {string} * @memberof CreatePartialViewFolderRequestModel */ name: string; /** * * @type {FileSystemFolderModel} * @memberof CreatePartialViewFolderRequestModel */ parent?: FileSystemFolderModel | null; } /** * Check if a given object implements the CreatePartialViewFolderRequestModel interface. */ export declare function instanceOfCreatePartialViewFolderRequestModel(value: object): value is CreatePartialViewFolderRequestModel; export declare function CreatePartialViewFolderRequestModelFromJSON(json: any): CreatePartialViewFolderRequestModel; export declare function CreatePartialViewFolderRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreatePartialViewFolderRequestModel; export declare function CreatePartialViewFolderRequestModelToJSON(json: any): CreatePartialViewFolderRequestModel; export declare function CreatePartialViewFolderRequestModelToJSONTyped(value?: CreatePartialViewFolderRequestModel | null, ignoreDiscriminator?: boolean): any;