mindee
Version:
Mindee Client Library for Node.js
26 lines (25 loc) • 517 B
TypeScript
import { StringDict } from "../../../parsing/index.js";
import { ModelWebhook } from "./modelWebhook.js";
/**
* Models search response.
*/
export declare class SearchModel {
/**
* ID of the model.
*/
id: string;
/**
* Name of the model.
*/
name: string;
/**
* Type of the model.
*/
modelType: string;
/**
* Webhooks associated with the model.
*/
webhooks: ModelWebhook[];
constructor(serverResponse: StringDict);
toString(): string;
}