Class GoogleCloudContactcenterinsightsV1QueryMetricsRequest
The request for querying metrics.
Implements
Inherited Members
Namespace: Google.Apis.Contactcenterinsights.v1.Data
Assembly: Google.Apis.Contactcenterinsights.v1.dll
Syntax
public class GoogleCloudContactcenterinsightsV1QueryMetricsRequest : IDirectResponseSchema
Properties
Dimensions
The dimensions that determine the grouping key for the query. Defaults to no dimension if this field is unspecified. If a dimension is specified, its key must also be specified. Each dimension's key must be unique. If a time granularity is also specified, metric values in the dimension will be bucketed by this granularity. Up to one dimension is supported for now.
Declaration
[JsonProperty("dimensions")]
public virtual IList<GoogleCloudContactcenterinsightsV1Dimension> Dimensions { get; set; }
Property Value
Type | Description |
---|---|
IList<GoogleCloudContactcenterinsightsV1Dimension> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Filter
Required. Filter to select a subset of conversations to compute the metrics. Must specify a window of the conversation create time to compute the metrics. The returned metrics will be from the range [DATE(starting create time), DATE(ending create time)).
Declaration
[JsonProperty("filter")]
public virtual string Filter { get; set; }
Property Value
Type | Description |
---|---|
string |
MeasureMask
Measures to return. Defaults to all measures if this field is unspecified. A valid mask should traverse from
the measure
field from the response. For example, a path from a measure mask to get the conversation count
is "conversation_measure.count".
Declaration
[JsonProperty("measureMask")]
public virtual object MeasureMask { get; set; }
Property Value
Type | Description |
---|---|
object |
TimeGranularity
The time granularity of each data point in the time series. Defaults to NONE if this field is unspecified.
Declaration
[JsonProperty("timeGranularity")]
public virtual string TimeGranularity { get; set; }
Property Value
Type | Description |
---|---|
string |