ListConnectorsResponse
import type { ListConnectorsResponse } from "https://googleapis.deno.dev/v1/firebasedataconnect:v1.ts";
Message for response to listing Connectors. By default, connectors.source
will not be included in the response. To specify the fields included in the
response, the response field mask can be provided by using the query
parameter $fields
or the header X-Goog-FieldMask
.
interface ListConnectorsResponse {
connectors?: Connector[];
nextPageToken?: string;
unreachable?: string[];
}