umbraco-management-api-client
Version:
TypeScript client for the Umbraco Management API (auto-generated by OpenAPI Generator)
45 lines (44 loc) • 1.49 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 WebhookEventResponseModel
*/
export interface WebhookEventResponseModel {
/**
*
* @type {string}
* @memberof WebhookEventResponseModel
*/
eventName: string;
/**
*
* @type {string}
* @memberof WebhookEventResponseModel
*/
eventType: string;
/**
*
* @type {string}
* @memberof WebhookEventResponseModel
*/
alias: string;
}
/**
* Check if a given object implements the WebhookEventResponseModel interface.
*/
export declare function instanceOfWebhookEventResponseModel(value: object): value is WebhookEventResponseModel;
export declare function WebhookEventResponseModelFromJSON(json: any): WebhookEventResponseModel;
export declare function WebhookEventResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookEventResponseModel;
export declare function WebhookEventResponseModelToJSON(json: any): WebhookEventResponseModel;
export declare function WebhookEventResponseModelToJSONTyped(value?: WebhookEventResponseModel | null, ignoreDiscriminator?: boolean): any;