UNPKG

umbraco-management-api-client

Version:

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

28 lines (27 loc) 1.2 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 */ export declare const StatusResultTypeModel: { readonly Success: "Success"; readonly Warning: "Warning"; readonly Error: "Error"; readonly Info: "Info"; }; export type StatusResultTypeModel = typeof StatusResultTypeModel[keyof typeof StatusResultTypeModel]; export declare function instanceOfStatusResultTypeModel(value: any): boolean; export declare function StatusResultTypeModelFromJSON(json: any): StatusResultTypeModel; export declare function StatusResultTypeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): StatusResultTypeModel; export declare function StatusResultTypeModelToJSON(value?: StatusResultTypeModel | null): any; export declare function StatusResultTypeModelToJSONTyped(value: any, ignoreDiscriminator: boolean): StatusResultTypeModel;