Mika Scraper / ChaiChatErrorResponse
Interface: ChaiChatErrorResponse
Defined in: src/_other-scraper/mika-ai.ts:28
Properties
ok
ok:
false
Indicates the success status of the response. In this context, ok
will always be false
, indicating an error in the request.
Defined in: src/_other-scraper/mika-ai.ts:29
message
message:
string
A descriptive message that provides details about the error encountered during the request.
Defined in: src/_other-scraper/mika-ai.ts:30
creator?
optional
creator:string
An optional property that may include the identifier of the entity that created the error or is responsible for it.
Defined in: src/_other-scraper/mika-ai.ts:31
Example
const errorResponse: ChaiChatErrorResponse = {
ok: false,
message: "An error occurred while processing the request.",
creator: "Mika AI"
};
Last updated on