UNPKG

umbraco-management-api-client

Version:

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

78 lines (77 loc) 2.17 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. */ import type { WebhookResponseModelEventsInner } from './WebhookResponseModelEventsInner'; /** * * @export * @interface WebhookResponseModel */ export interface WebhookResponseModel { /** * * @type {boolean} * @memberof WebhookResponseModel */ enabled: boolean; /** * * @type {string} * @memberof WebhookResponseModel */ name?: string | null; /** * * @type {string} * @memberof WebhookResponseModel */ description?: string | null; /** * * @type {string} * @memberof WebhookResponseModel */ url: string; /** * * @type {Array<string>} * @memberof WebhookResponseModel */ contentTypeKeys: Array<string>; /** * * @type {{ [key: string]: string; }} * @memberof WebhookResponseModel */ headers: { [key: string]: string; }; /** * * @type {string} * @memberof WebhookResponseModel */ id: string; /** * * @type {Array<WebhookResponseModelEventsInner>} * @memberof WebhookResponseModel */ events: Array<WebhookResponseModelEventsInner>; } /** * Check if a given object implements the WebhookResponseModel interface. */ export declare function instanceOfWebhookResponseModel(value: object): value is WebhookResponseModel; export declare function WebhookResponseModelFromJSON(json: any): WebhookResponseModel; export declare function WebhookResponseModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookResponseModel; export declare function WebhookResponseModelToJSON(json: any): WebhookResponseModel; export declare function WebhookResponseModelToJSONTyped(value?: WebhookResponseModel | null, ignoreDiscriminator?: boolean): any;