Class QueryAudienceExportResponse
A list of users in an audience export.
Implements
Inherited Members
Namespace: Google.Apis.AnalyticsData.v1beta.Data
Assembly: Google.Apis.AnalyticsData.v1beta.dll
Syntax
public class QueryAudienceExportResponse : IDirectResponseSchema
Properties
AudienceExport
Configuration data about AudienceExport being queried. Returned to help interpret the audience rows in this response. For example, the dimensions in this AudienceExport correspond to the columns in the AudienceRows.
Declaration
[JsonProperty("audienceExport")]
public virtual AudienceExport AudienceExport { get; set; }
Property Value
| Type | Description |
|---|---|
| AudienceExport |
AudienceRows
Rows for each user in an audience export. The number of rows in this response will be less than or equal to request's page size.
Declaration
[JsonProperty("audienceRows")]
public virtual IList<V1betaAudienceRow> AudienceRows { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<V1betaAudienceRow> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
RowCount
The total number of rows in the AudienceExport result. rowCount is independent of the number of rows
returned in the response, the limit request parameter, and the offset request parameter. For example if
a query returns 175 rows and includes limit of 50 in the API request, the response will contain rowCount
of 175 but only 50 rows. To learn more about this pagination parameter, see
Pagination.
Declaration
[JsonProperty("rowCount")]
public virtual int? RowCount { get; set; }
Property Value
| Type | Description |
|---|---|
| int? |