pub struct AudienceExport {
pub audience: Option<String>,
pub audience_display_name: Option<String>,
pub begin_creating_time: Option<DateTime<Utc>>,
pub creation_quota_tokens_charged: Option<i32>,
pub dimensions: Option<Vec<V1betaAudienceDimension>>,
pub error_message: Option<String>,
pub name: Option<String>,
pub percentage_completed: Option<f64>,
pub row_count: Option<i32>,
pub state: Option<String>,
}
Expand description
An audience export is a list of users in an audience at the time of the list’s creation. One audience may have multiple audience exports created for different days.
§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 create properties (request)
- audience exports get properties (response)
Fields§
§audience: Option<String>
Required. The audience resource name. This resource name identifies the audience being listed and is shared between the Analytics Data & Admin APIs. Format: properties/{property}/audiences/{audience}
audience_display_name: Option<String>
Output only. The descriptive display name for this audience. For example, “Purchasers”.
begin_creating_time: Option<DateTime<Utc>>
Output only. The time when CreateAudienceExport was called and the AudienceExport began the CREATING
state.
creation_quota_tokens_charged: Option<i32>
Output only. The total quota tokens charged during creation of the AudienceExport. Because this token count is based on activity from the CREATING
state, this tokens charged will be fixed once an AudienceExport enters the ACTIVE
or FAILED
states.
dimensions: Option<Vec<V1betaAudienceDimension>>
Required. The dimensions requested and displayed in the query response.
error_message: Option<String>
Output only. Error message is populated when an audience export fails during creation. A common reason for such a failure is quota exhaustion.
name: Option<String>
Output only. Identifier. The audience export resource name assigned during creation. This resource name identifies this AudienceExport
. Format: properties/{property}/audienceExports/{audience_export}
percentage_completed: Option<f64>
Output only. The percentage completed for this audience export ranging between 0 to 100.
row_count: Option<i32>
Output only. The total number of rows in the AudienceExport result.
state: Option<String>
Output only. The current state for this AudienceExport.
Trait Implementations§
Source§impl Clone for AudienceExport
impl Clone for AudienceExport
Source§fn clone(&self) -> AudienceExport
fn clone(&self) -> AudienceExport
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for AudienceExport
impl Debug for AudienceExport
Source§impl Default for AudienceExport
impl Default for AudienceExport
Source§fn default() -> AudienceExport
fn default() -> AudienceExport
Source§impl<'de> Deserialize<'de> for AudienceExport
impl<'de> Deserialize<'de> for AudienceExport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl Serialize for AudienceExport
impl Serialize for AudienceExport
impl RequestValue for AudienceExport
impl ResponseResult for AudienceExport
Auto Trait Implementations§
impl Freeze for AudienceExport
impl RefUnwindSafe for AudienceExport
impl Send for AudienceExport
impl Sync for AudienceExport
impl Unpin for AudienceExport
impl UnwindSafe for AudienceExport
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more