UNPKG

mindee

Version:

Mindee Client Library for Node.js

11 lines (10 loc) 219 B
export class InferenceModel { constructor(serverResponse) { this.id = serverResponse["id"]; } toString() { return "Model\n" + "=====\n" + `:ID: ${this.id}\n`; } }