UNPKG

@kontent-ai/management-sdk

Version:
14 lines (13 loc) 741 B
import { BaseQuery } from '../base-query'; import { ManagementQueryService } from '../../services'; import { IManagementClientConfig } from '../../config'; import { Identifiers } from '../../models'; import { BaseResponses } from '../../responses'; export declare class DeleteWebhookQuery extends BaseQuery<BaseResponses.EmptyContentManagementResponse> { protected config: IManagementClientConfig; protected queryService: ManagementQueryService; identifier: Identifiers.WebhookIdentifier; constructor(config: IManagementClientConfig, queryService: ManagementQueryService, identifier: Identifiers.WebhookIdentifier); toPromise(): Promise<BaseResponses.EmptyContentManagementResponse>; protected getAction(): string; }