mindee
Version:
Mindee Client Library for Node.js
25 lines (24 loc) • 496 B
TypeScript
import { ErrorResponse } from "../../../v2/parsing/index.js";
import { StringDict } from "../../../parsing/index.js";
/**
* JobWebhook information.
*/
export declare class JobWebhook {
/**
* JobWebhook ID.
*/
id: string;
/**
* Created at date.
*/
createdAt: Date | null;
/**
* Status of the webhook.
*/
status: string;
/**
* Error response, if any.
*/
error?: ErrorResponse;
constructor(serverResponse: StringDict);
}