mindee
Version:
Mindee Client Library for Node.js
25 lines (24 loc) • 467 B
TypeScript
import { ErrorResponse } from "./errorResponse";
import { StringDict } from "../common";
/**
* 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);
}