ListModelsResult interface

Firebase ML is deprecated and will be shut down on June 15, 2027. To host custom models, you must migrate to another solution. You can use Cloud Storage for Firebase as an alternative for hosting custom models. For more info, see https://firebase.google.com/docs/ml/migrate-to-cloud-storage

Response object for a listModels operation.

Signature:

export interface ListModelsResult 

Properties

Property Type Description
models Model[] A list of models in your project.
pageToken string A token you can use to retrieve the next page of results. If null, the current page is the final page.

ListModelsResult.models

A list of models in your project.

Signature:

readonly models: Model[];

ListModelsResult.pageToken

A token you can use to retrieve the next page of results. If null, the current page is the final page.

Signature:

readonly pageToken?: string;