/** * @type Status: Document representing a status of an object. * * @property code: The status code. * - **Max Length:** 256 * * @property message: The message corresponding to the status. * - **Max Length:** 256 * * @property status: A constant corresponding to the status code. The value is 0 for OK, 1 for ERROR, and 2 for WARN. * */ export type Status = { code?: string; message?: string; status?: number; } & { [key: string]: any; };