/** * @type Status: Document representing an object status. * * @property code: The status code. * * @property message: The status message. * * @property status: The status. For more information on the status values see Status.OK and Status.ERROR. * */ export type Status = { code?: string; message?: string; status?: number; } & { [key: string]: any; };