import { AuthApiKey } from '../Common/API/AuthApiKey'; import { AuthBasic } from '../Common/API/AuthBasic'; import { AuthBearer } from '../Common/API/AuthBearer'; import { AuthType } from '../Common/API/AuthType'; import { Method } from '../Common/API/Method'; interface IWebhook { id?: string | null; spaceId?: string | null; name?: string | null; apiUrl?: string | null; apiMethod?: Method | null; apiAuthType?: AuthType | null; apiAuthBasic?: AuthBasic | null; apiAuthApiKey?: AuthApiKey | null; apiAuthBearer?: AuthBearer | null; apiBody?: string | null; apiContentType?: string | null; createdAt?: string | null; updatedAt?: string | null; deletedAt?: string | null; } export { IWebhook };