umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
45 lines (44 loc) • 1.62 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
* @interface DocumentNotificationResponseModel
*/
export interface DocumentNotificationResponseModel {
/**
*
* @type {string}
* @memberof DocumentNotificationResponseModel
*/
actionId: string;
/**
*
* @type {string}
* @memberof DocumentNotificationResponseModel
*/
alias: string;
/**
*
* @type {boolean}
* @memberof DocumentNotificationResponseModel
*/
subscribed: boolean;
}
/**
* Check if a given object implements the DocumentNotificationResponseModel interface.
*/
export declare function instanceOfDocumentNotificationResponseModel(value: object): value is DocumentNotificationResponseModel;
export declare function DocumentNotificationResponseModelFromJSON(json: any): DocumentNotificationResponseModel;
export declare function DocumentNotificationResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): DocumentNotificationResponseModel;
export declare function DocumentNotificationResponseModelToJSON(json: any): DocumentNotificationResponseModel;
export declare function DocumentNotificationResponseModelToJSONTyped(value?: DocumentNotificationResponseModel | null, ignoreDiscriminator?: boolean): any;