Show / Hide Table of Contents

Class AccountTreeResponse

JSON template for an Analytics account tree response. The account tree response is used in the provisioning api to return the result of creating an account, property, and view (profile).

Inheritance
System.Object
AccountTreeResponse
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 AccountTreeResponse : IDirectResponseSchema

Properties

Account

The account created.

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

ETag

The ETag of the item.

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

Kind

Resource type for account ticket.

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

Profile

View (Profile) for the account.

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

Webproperty

Web property for the account.

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

Implements

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