import Base, { MaybeRaw } from "../../../../../Base"; import { PaginatedResponse } from "../../../../../interfaces/global"; import { WebhookLog } from "../../../../../interfaces/high5/space/webhook"; export declare class High5WebhookLog extends Base { /** * Retrieves all Webhook logs for the specified Webhook. * @param orgName Name of the Organization * @param spaceName Name of the Space * @param webhookId ID of the Webhook * @param limit (optional) Max number of results (1-100; defaults to 25) * @param page (optional) Page number: Skip the first (page * limit) results (defaults to 0) * @returns Object containing an array of Webhook logs and the total number of results found in the database (independent of limit and page) */ getWebhookLogs(orgName: string, spaceName: string, webhookId: string, limit?: number, page?: number, raw?: { raw: R; }): Promise>>; protected getEndpoint(endpoint: string): string; }