umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
46 lines (45 loc) • 1.58 kB
TypeScript
/**
* 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 CreateScriptRequestModel
*/
export interface CreateScriptRequestModel {
/**
*
* @type {string}
* @memberof CreateScriptRequestModel
*/
name: string;
/**
*
* @type {FileSystemFolderModel}
* @memberof CreateScriptRequestModel
*/
parent?: FileSystemFolderModel | null;
/**
*
* @type {string}
* @memberof CreateScriptRequestModel
*/
content: string;
}
/**
* Check if a given object implements the CreateScriptRequestModel interface.
*/
export declare function instanceOfCreateScriptRequestModel(value: object): value is CreateScriptRequestModel;
export declare function CreateScriptRequestModelFromJSON(json: any): CreateScriptRequestModel;
export declare function CreateScriptRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateScriptRequestModel;
export declare function CreateScriptRequestModelToJSON(json: any): CreateScriptRequestModel;
export declare function CreateScriptRequestModelToJSONTyped(value?: CreateScriptRequestModel | null, ignoreDiscriminator?: boolean): any;