Show / Hide Table of Contents

Class Account

Representation of an account.

Inheritance
System.Object
Account
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Adsense.v2.Data
Assembly: Google.Apis.Adsense.v2.dll
Syntax
public class Account : IDirectResponseSchema

Properties

CreateTime

Output only. Creation time of the account.

Declaration
[JsonProperty("createTime")]
public virtual object CreateTime { get; set; }
Property Value
Type Description
System.Object

DisplayName

Output only. Display name of this account.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

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

Name

Resource name of the account. Format: accounts/pub-[0-9]+

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

PendingTasks

Output only. Outstanding tasks that need to be completed as part of the sign-up process for a new account. e.g. "billing-profile-creation", "phone-pin-verification".

Declaration
[JsonProperty("pendingTasks")]
public virtual IList<string> PendingTasks { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Premium

Output only. Whether this account is premium.

Declaration
[JsonProperty("premium")]
public virtual bool? Premium { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

TimeZone

The account time zone, as used by reporting. For more information, see changing the time zone of your reports.

Declaration
[JsonProperty("timeZone")]
public virtual TimeZone TimeZone { get; set; }
Property Value
Type Description
TimeZone

Implements

IDirectResponseSchema
In This Article
Back to top