pub struct QueryAudienceExportResponse {
pub audience_export: Option<AudienceExport>,
pub audience_rows: Option<Vec<V1betaAudienceRow>>,
pub row_count: Option<i32>,
}Expand description
A list of users in an audience export.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- audience exports query properties (response)
Fields§
§audience_export: Option<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.
audience_rows: Option<Vec<V1betaAudienceRow>>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.
row_count: Option<i32>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.
Trait Implementations§
Source§impl Clone for QueryAudienceExportResponse
impl Clone for QueryAudienceExportResponse
Source§fn clone(&self) -> QueryAudienceExportResponse
fn clone(&self) -> QueryAudienceExportResponse
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more