Project: /docs/reference/js/_project.yaml Book: /docs/reference/_book.yaml page_type: reference
{% comment %} DO NOT EDIT THIS FILE! This is generated by the JS SDK team, and any local changes will be overwritten. Changes should be made in the source code at https://github.com/firebase/firebase-js-sdk {% endcomment %}
Details object that contains data originating from a bad HTTP response.
Signature:
export interface CustomErrorData
Property | Type | Description |
---|---|---|
errorDetails | ErrorDetails[] | Optional additional details about the error. |
response | GenerateContentResponse | Response from a GenerateContentRequest |
status | number | HTTP status code of the error response. |
statusText | string | HTTP status text of the error response. |
Optional additional details about the error.
Signature:
errorDetails?: ErrorDetails[];
Response from a GenerateContentRequest
Signature:
response?: GenerateContentResponse;
HTTP status code of the error response.
Signature:
status?: number;
HTTP status text of the error response.
Signature:
statusText?: string;