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.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
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

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

RegionCode

Country of business. Must be a Unicode CLDR region code.

Declaration
public string RegionCode { 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
In This Article
Back to top