UNPKG

mindee

Version:

Mindee Client Library for Node.js

20 lines (19 loc) 350 B
import { StringDict } from "../../../parsing/index.js"; /** * Model webhook info. */ export declare class ModelWebhook { /** * ID of the webhook. */ id: string; /** * Name of the webhook. */ name: string; /** * URL of the webhook. */ url: string; constructor(serverResponse: StringDict); }