Show / Hide Table of Contents

Class QueryAudienceExportResponse

A list of users in an audience export.

Inheritance
object
QueryAudienceExportResponse
Implements
IMessage<QueryAudienceExportResponse>
IEquatable<QueryAudienceExportResponse>
IDeepCloneable<QueryAudienceExportResponse>
IBufferMessage
IMessage
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Analytics.Data.V1Beta
Assembly: Google.Analytics.Data.V1Beta.dll
Syntax
public sealed class QueryAudienceExportResponse : IMessage<QueryAudienceExportResponse>, IEquatable<QueryAudienceExportResponse>, IDeepCloneable<QueryAudienceExportResponse>, IBufferMessage, IMessage

Constructors

QueryAudienceExportResponse()

Declaration
public QueryAudienceExportResponse()

QueryAudienceExportResponse(QueryAudienceExportResponse)

Declaration
public QueryAudienceExportResponse(QueryAudienceExportResponse other)
Parameters
Type Name Description
QueryAudienceExportResponse other

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
public 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
public RepeatedField<AudienceRow> AudienceRows { get; }
Property Value
Type Description
RepeatedField<AudienceRow>

HasRowCount

Gets whether the "row_count" field is set

Declaration
public bool HasRowCount { get; }
Property Value
Type Description
bool

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
public int RowCount { get; set; }
Property Value
Type Description
int
In this article
Back to top Generated by DocFX