Google Analytics · Schema

GoogleAnalyticsAdminV1betaListFirebaseLinksResponse

Response message for ListFirebaseLinks RPC

AnalyticsDataGoogleMetricsReportingWeb AnalyticsMachine LearningAttribution

Properties

Name Type Description
firebaseLinks array List of FirebaseLinks. This will have at most one value.
nextPageToken string A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Currently, Google Analytics supports only one FirebaseLink per property,
View JSON Schema on GitHub

JSON Schema

google-analytics-googleanalyticsadminv1betalistfirebaselinksresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GoogleAnalyticsAdminV1betaListFirebaseLinksResponse",
  "title": "GoogleAnalyticsAdminV1betaListFirebaseLinksResponse",
  "description": "Response message for ListFirebaseLinks RPC",
  "properties": {
    "firebaseLinks": {
      "description": "List of FirebaseLinks. This will have at most one value.",
      "items": {
        "$ref": "#/components/schemas/GoogleAnalyticsAdminV1betaFirebaseLink"
      },
      "type": "array"
    },
    "nextPageToken": {
      "description": "A token, which can be sent as `page_token` to retrieve the next page. If this field is omitted, there are no subsequent pages. Currently, Google Analytics supports only one FirebaseLink per property, so this will never be populated.",
      "type": "string"
    }
  },
  "type": "object"
}