Show / Hide Table of Contents

Class Account

A resource message representing a Google Analytics account.

Inheritance
System.Object
Account
Implements
Google.Protobuf.IMessage<Account>
System.IEquatable<Account>
Google.Protobuf.IDeepCloneable<Account>
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 Account : IMessage<Account>, IEquatable<Account>, IDeepCloneable<Account>, IBufferMessage, IMessage

Constructors

Account()

Declaration
public Account()

Account(Account)

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

Properties

AccountName

AccountName-typed view over the Name resource name property.

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

CountryCode

Country of business. Must be a non-deprecated code for a UN M.49 region.

https: //unicode.org/cldr/charts/latest/supplem // ental/territory_containment_un_m_49.html

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

CreateTime

Output only. Time when this account was originally created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp

Deleted

Output only. Indicates whether this Account is soft-deleted or not. Deleted accounts are excluded from List results unless specifically requested.

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

DisplayName

Required. Human-readable display name for this account.

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

Name

Output only. Resource name of this account. Format: accounts/{account} Example: "accounts/100"

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

UpdateTime

Output only. Time when account payload fields were last updated.

Declaration
public Timestamp UpdateTime { get; set; }
Property Value
Type Description
Google.Protobuf.WellKnownTypes.Timestamp
Back to top