pub struct GoogleAnalyticsAdminV1alphaDataSharingSettings {
pub name: Option<String>,
pub sharing_with_google_any_sales_enabled: Option<bool>,
pub sharing_with_google_assigned_sales_enabled: Option<bool>,
pub sharing_with_google_products_enabled: Option<bool>,
pub sharing_with_google_support_enabled: Option<bool>,
pub sharing_with_others_enabled: Option<bool>,
}
Expand description
A resource message representing data sharing settings of a Google Analytics account.
§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).
- get data sharing settings accounts (response)
Fields§
§name: Option<String>
Output only. Resource name. Format: accounts/{account}/dataSharingSettings Example: “accounts/1000/dataSharingSettings”
sharing_with_google_any_sales_enabled: Option<bool>
Allows any of Google sales to access the data in order to suggest configuration changes to improve results.
sharing_with_google_assigned_sales_enabled: Option<bool>
Allows Google sales teams that are assigned to the customer to access the data in order to suggest configuration changes to improve results. Sales team restrictions still apply when enabled.
sharing_with_google_products_enabled: Option<bool>
Allows Google to use the data to improve other Google products or services.
sharing_with_google_support_enabled: Option<bool>
Allows Google support to access the data in order to help troubleshoot issues.
sharing_with_others_enabled: Option<bool>
Allows Google to share the data anonymously in aggregate form with others.
Trait Implementations§
Source§impl Clone for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl Clone for GoogleAnalyticsAdminV1alphaDataSharingSettings
Source§fn clone(&self) -> GoogleAnalyticsAdminV1alphaDataSharingSettings
fn clone(&self) -> GoogleAnalyticsAdminV1alphaDataSharingSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl Default for GoogleAnalyticsAdminV1alphaDataSharingSettings
Source§fn default() -> GoogleAnalyticsAdminV1alphaDataSharingSettings
fn default() -> GoogleAnalyticsAdminV1alphaDataSharingSettings
Source§impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl<'de> Deserialize<'de> for GoogleAnalyticsAdminV1alphaDataSharingSettings
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>,
impl ResponseResult for GoogleAnalyticsAdminV1alphaDataSharingSettings
Auto Trait Implementations§
impl Freeze for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl RefUnwindSafe for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl Send for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl Sync for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl Unpin for GoogleAnalyticsAdminV1alphaDataSharingSettings
impl UnwindSafe for GoogleAnalyticsAdminV1alphaDataSharingSettings
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