UNPKG

umbraco-management-api-client

Version:

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

46 lines (45 loc) 1.57 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 { ReferenceByIdModel } from './ReferenceByIdModel'; /** * * @export * @interface CreateFolderRequestModel */ export interface CreateFolderRequestModel { /** * * @type {string} * @memberof CreateFolderRequestModel */ name: string; /** * * @type {string} * @memberof CreateFolderRequestModel */ id?: string | null; /** * * @type {ReferenceByIdModel} * @memberof CreateFolderRequestModel */ parent?: ReferenceByIdModel | null; } /** * Check if a given object implements the CreateFolderRequestModel interface. */ export declare function instanceOfCreateFolderRequestModel(value: object): value is CreateFolderRequestModel; export declare function CreateFolderRequestModelFromJSON(json: any): CreateFolderRequestModel; export declare function CreateFolderRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateFolderRequestModel; export declare function CreateFolderRequestModelToJSON(json: any): CreateFolderRequestModel; export declare function CreateFolderRequestModelToJSONTyped(value?: CreateFolderRequestModel | null, ignoreDiscriminator?: boolean): any;