QueryDomainStatsResponse

Response message for QueryDomainStats.

JSON representation
{
  "domainStats": [
    {
      object (DomainStat)
    }
  ],
  "nextPageToken": string
}
Fields
domainStats[]

object (DomainStat)

The list of domain statistics. Each DomainStat object contains the value for a metric requested in the QueryDomainStatsRequest.

nextPageToken

string

Token to retrieve the next page of results, or empty if there are no more results in the list.

DomainStat

Email statistics for a domain for a specified time period or date.

JSON representation
{
  "name": string,
  "value": {
    object (StatisticValue)
  },
  "date": {
    object (Date)
  },
  "metric": string
}
Fields
name

string

Output only. The resource name of the DomainStat resource. Format: domains/{domain}/domainStats/{domain_stat} The {domain_stat} segment is an opaque, server-generated ID. We recommend using the metric field to identify queried metrics instead of parsing the name.

value

object (StatisticValue)

The value of the corresponding metric.

date

object (Date)

Optional. The specific date for these stats, if granularity is DAILY. This field is populated if the QueryDomainStatsRequest specified a DAILY aggregation granularity.

metric

string

The user-defined name from MetricDefinition.name in the request, used to correlate this result with the requested metric.

StatisticValue

The actual value of a statistic.

JSON representation
{

  // Union field value can be only one of the following:
  "intValue": string,
  "doubleValue": number,
  "stringValue": string,
  "floatValue": number,
  "stringList": {
    object (StringList)
  }
  // End of list of possible types for union field value.
}
Fields
Union field value. The specific value of the statistic. value can be only one of the following:
intValue

string (int64 format)

Integer value.

doubleValue

number

Double value.

stringValue

string

String value.

floatValue

number

Float value.

stringList

object (StringList)

List of string values.

StringList

Represents a list of strings.

JSON representation
{
  "values": [
    string
  ]
}
Fields
values[]

string

The string values.