Show / Hide Table of Contents

Class Account

JSON template for Analytics account entry.

Inheritance
System.Object
Account
Implements
Google.Apis.Requests.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.Analytics.v3.Data
Assembly: Google.Apis.Analytics.v3.dll
Syntax
public class Account : IDirectResponseSchema

Properties

ChildLink

Child link for an account entry. Points to the list of web properties for this account.

Declaration
[JsonProperty("childLink")]
public virtual Account.ChildLinkData ChildLink { get; set; }
Property Value
Type Description
Account.ChildLinkData

Created

System.DateTime representation of CreatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Created { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

CreatedRaw

Time the account was created.

Declaration
[JsonProperty("created")]
public virtual string CreatedRaw { 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

Id

Account ID.

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

Kind

Resource type for Analytics account.

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

Name

Account name.

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

Permissions

Permissions the user has for this account.

Declaration
[JsonProperty("permissions")]
public virtual Account.PermissionsData Permissions { get; set; }
Property Value
Type Description
Account.PermissionsData

SelfLink

Link for this account.

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

Starred

Indicates whether this account is starred or not.

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

Updated

System.DateTime representation of UpdatedRaw.

Declaration
[JsonIgnore]
public virtual DateTime? Updated { get; set; }
Property Value
Type Description
System.Nullable<System.DateTime>

UpdatedRaw

Time the account was last modified.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top