UNPKG

umbraco-management-api-client

Version:

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

52 lines (51 loc) 1.6 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 ScriptResponseModel */ export interface ScriptResponseModel { /** * * @type {string} * @memberof ScriptResponseModel */ path: string; /** * * @type {string} * @memberof ScriptResponseModel */ name: string; /** * * @type {FileSystemFolderModel} * @memberof ScriptResponseModel */ parent?: FileSystemFolderModel | null; /** * * @type {string} * @memberof ScriptResponseModel */ content: string; } /** * Check if a given object implements the ScriptResponseModel interface. */ export declare function instanceOfScriptResponseModel(value: object): value is ScriptResponseModel; export declare function ScriptResponseModelFromJSON(json: any): ScriptResponseModel; export declare function ScriptResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ScriptResponseModel; export declare function ScriptResponseModelToJSON(json: any): ScriptResponseModel; export declare function ScriptResponseModelToJSONTyped(value?: ScriptResponseModel | null, ignoreDiscriminator?: boolean): any;