UNPKG

umbraco-management-api-client

Version:

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

33 lines (32 loc) 1.26 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. */ /** * * @export * @interface UpdateScriptRequestModel */ export interface UpdateScriptRequestModel { /** * * @type {string} * @memberof UpdateScriptRequestModel */ content: string; } /** * Check if a given object implements the UpdateScriptRequestModel interface. */ export declare function instanceOfUpdateScriptRequestModel(value: object): value is UpdateScriptRequestModel; export declare function UpdateScriptRequestModelFromJSON(json: any): UpdateScriptRequestModel; export declare function UpdateScriptRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateScriptRequestModel; export declare function UpdateScriptRequestModelToJSON(json: any): UpdateScriptRequestModel; export declare function UpdateScriptRequestModelToJSONTyped(value?: UpdateScriptRequestModel | null, ignoreDiscriminator?: boolean): any;