Show / Hide Table of Contents

Class DataSharingSettings

A resource message representing data sharing settings of a Google Analytics account.

Inheritance
System.Object
DataSharingSettings
Implements
Google.Protobuf.IMessage<DataSharingSettings>
System.IEquatable<DataSharingSettings>
Google.Protobuf.IDeepCloneable<DataSharingSettings>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class DataSharingSettings : IMessage<DataSharingSettings>, IEquatable<DataSharingSettings>, IDeepCloneable<DataSharingSettings>, IBufferMessage, IMessage

Constructors

DataSharingSettings()

Declaration
public DataSharingSettings()

DataSharingSettings(DataSharingSettings)

Declaration
public DataSharingSettings(DataSharingSettings other)
Parameters
Type Name Description
DataSharingSettings other

Properties

DataSharingSettingsName

DataSharingSettingsName-typed view over the Name resource name property.

Declaration
public DataSharingSettingsName DataSharingSettingsName { get; set; }
Property Value
Type Description
DataSharingSettingsName

Name

Output only. Resource name. Format: accounts/{account}/dataSharingSettings Example: "accounts/1000/dataSharingSettings"

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

SharingWithGoogleAnySalesEnabled

Allows any of Google sales to access the data in order to suggest configuration changes to improve results.

Declaration
public bool SharingWithGoogleAnySalesEnabled { get; set; }
Property Value
Type Description
System.Boolean

SharingWithGoogleAssignedSalesEnabled

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.

Declaration
public bool SharingWithGoogleAssignedSalesEnabled { get; set; }
Property Value
Type Description
System.Boolean

SharingWithGoogleProductsEnabled

Allows Google to use the data to improve other Google products or services.

Declaration
public bool SharingWithGoogleProductsEnabled { get; set; }
Property Value
Type Description
System.Boolean

SharingWithGoogleSupportEnabled

Allows Google support to access the data in order to help troubleshoot issues.

Declaration
public bool SharingWithGoogleSupportEnabled { get; set; }
Property Value
Type Description
System.Boolean

SharingWithOthersEnabled

Allows Google to share the data anonymously in aggregate form with others.

Declaration
public bool SharingWithOthersEnabled { get; set; }
Property Value
Type Description
System.Boolean
Back to top