Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

QueryAudienceExportResponse

import type { QueryAudienceExportResponse } from "https://googleapis.deno.dev/v1/analyticsdata:v1beta.ts";

A list of users in an audience export.

interface QueryAudienceExportResponse {
audienceExport?: AudienceExport;
audienceRows?: V1betaAudienceRow[];
rowCount?: number;
}

§Properties

§
audienceExport?: AudienceExport
[src]

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.

§
audienceRows?: V1betaAudienceRow[]
[src]

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.

§
rowCount?: number
[src]

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.