umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
46 lines (45 loc) • 1.55 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 { EventMessageTypeModel } from './EventMessageTypeModel';
/**
*
* @export
* @interface NotificationHeaderModel
*/
export interface NotificationHeaderModel {
/**
*
* @type {string}
* @memberof NotificationHeaderModel
*/
message: string;
/**
*
* @type {string}
* @memberof NotificationHeaderModel
*/
category: string;
/**
*
* @type {EventMessageTypeModel}
* @memberof NotificationHeaderModel
*/
type: EventMessageTypeModel;
}
/**
* Check if a given object implements the NotificationHeaderModel interface.
*/
export declare function instanceOfNotificationHeaderModel(value: object): value is NotificationHeaderModel;
export declare function NotificationHeaderModelFromJSON(json: any): NotificationHeaderModel;
export declare function NotificationHeaderModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): NotificationHeaderModel;
export declare function NotificationHeaderModelToJSON(json: any): NotificationHeaderModel;
export declare function NotificationHeaderModelToJSONTyped(value?: NotificationHeaderModel | null, ignoreDiscriminator?: boolean): any;