Skip to content

Latest commit

 

History

History
66 lines (45 loc) · 1.37 KB

vertexai.errordetails.md

File metadata and controls

66 lines (45 loc) · 1.37 KB

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 %}

ErrorDetails interface

Details object that may be included in an error response.

Signature:

export interface ErrorDetails 

Properties

Property Type Description
"@type" string
domain string The domain where the error occurred.
metadata Record<string, unknown> Additional metadata about the error.
reason string The reason for the error.

ErrorDetails."@type"

Signature:

'@type'?: string;

ErrorDetails.domain

The domain where the error occurred.

Signature:

domain?: string;

ErrorDetails.metadata

Additional metadata about the error.

Signature:

metadata?: Record<string, unknown>;

ErrorDetails.reason

The reason for the error.

Signature:

reason?: string;