Struct google_analyticsdata1_beta::api::CohortsRange[][src]

pub struct CohortsRange {
    pub end_offset: Option<i32>,
    pub granularity: Option<String>,
    pub start_offset: Option<i32>,
}

Configures the extended reporting date range for a cohort report. Specifies an offset duration to follow the cohorts over.

This type is not used in any activity, and only used as part of another schema.

Fields

end_offset: Option<i32>

Required. endOffset specifies the end date of the extended reporting date range for a cohort report. endOffset can be any positive integer but is commonly set to 5 to 10 so that reports contain data on the cohort for the next several granularity time periods. If granularity is DAILY, the endDate of the extended reporting date range is endDate of the cohort plus endOffset days. If granularity is WEEKLY, the endDate of the extended reporting date range is endDate of the cohort plus endOffset * 7 days. If granularity is MONTHLY, the endDate of the extended reporting date range is endDate of the cohort plus endOffset * 30 days.

granularity: Option<String>

Required. The granularity used to interpret the startOffset and endOffset for the extended reporting date range for a cohort report.

start_offset: Option<i32>

startOffset specifies the start date of the extended reporting date range for a cohort report. startOffset is commonly set to 0 so that reports contain data from the acquisition of the cohort forward. If granularity is DAILY, the startDate of the extended reporting date range is startDate of the cohort plus startOffset days. If granularity is WEEKLY, the startDate of the extended reporting date range is startDate of the cohort plus startOffset * 7 days. If granularity is MONTHLY, the startDate of the extended reporting date range is startDate of the cohort plus startOffset * 30 days.

Trait Implementations

impl Clone for CohortsRange[src]

impl Debug for CohortsRange[src]

impl Default for CohortsRange[src]

impl<'de> Deserialize<'de> for CohortsRange[src]

impl Part for CohortsRange[src]

impl Serialize for CohortsRange[src]

Auto Trait Implementations

impl RefUnwindSafe for CohortsRange[src]

impl Send for CohortsRange[src]

impl Sync for CohortsRange[src]

impl Unpin for CohortsRange[src]

impl UnwindSafe for CohortsRange[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.