UNPKG

umbraco-management-api-client

Version:

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

33 lines (32 loc) 1.33 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 UpdatePartialViewRequestModel */ export interface UpdatePartialViewRequestModel { /** * * @type {string} * @memberof UpdatePartialViewRequestModel */ content: string; } /** * Check if a given object implements the UpdatePartialViewRequestModel interface. */ export declare function instanceOfUpdatePartialViewRequestModel(value: object): value is UpdatePartialViewRequestModel; export declare function UpdatePartialViewRequestModelFromJSON(json: any): UpdatePartialViewRequestModel; export declare function UpdatePartialViewRequestModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdatePartialViewRequestModel; export declare function UpdatePartialViewRequestModelToJSON(json: any): UpdatePartialViewRequestModel; export declare function UpdatePartialViewRequestModelToJSONTyped(value?: UpdatePartialViewRequestModel | null, ignoreDiscriminator?: boolean): any;