umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
29 lines (28 loc) • 1.23 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.
*/
/**
*
* @export
*/
export declare const EventMessageTypeModel: {
readonly Default: "Default";
readonly Info: "Info";
readonly Error: "Error";
readonly Success: "Success";
readonly Warning: "Warning";
};
export type EventMessageTypeModel = typeof EventMessageTypeModel[keyof typeof EventMessageTypeModel];
export declare function instanceOfEventMessageTypeModel(value: any): boolean;
export declare function EventMessageTypeModelFromJSON(json: any): EventMessageTypeModel;
export declare function EventMessageTypeModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): EventMessageTypeModel;
export declare function EventMessageTypeModelToJSON(value?: EventMessageTypeModel | null): any;
export declare function EventMessageTypeModelToJSONTyped(value: any, ignoreDiscriminator: boolean): EventMessageTypeModel;