UNPKG

mindee

Version:

Mindee Client Library for Node.js

12 lines (11 loc) 305 B
/** * Data schema options activated during the inference. */ export class DataSchemaActiveOption { constructor(serverResponse) { this.replace = serverResponse["replace"]; } toString() { return `Data Schema\n-----------\n:Replace: ${this.replace ? "True" : "False"}`; } }