Show / Hide Table of Contents

Class Accounts

An account collection provides a list of Analytics accounts to which a user has access. The account collection is the entry point to all management information. Each resource in the collection corresponds to a single Analytics account.

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

Properties

ETag

The ETag of the item.

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

Items

A list of accounts.

Declaration
[JsonProperty("items")]
public virtual IList<Account> Items { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Account>

ItemsPerPage

The maximum number of entries the response can contain, regardless of the actual number of entries returned. Its value ranges from 1 to 1000 with a value of 1000 by default, or otherwise specified by the max-results query parameter.

Declaration
[JsonProperty("itemsPerPage")]
public virtual int? ItemsPerPage { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Kind

Collection type.

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

NextLink

Next link for this account collection.

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

PreviousLink

Previous link for this account collection.

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

StartIndex

The starting index of the entries, which is 1 by default or otherwise specified by the start-index query parameter.

Declaration
[JsonProperty("startIndex")]
public virtual int? StartIndex { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

TotalResults

The total number of results for the query, regardless of the number of results in the response.

Declaration
[JsonProperty("totalResults")]
public virtual int? TotalResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Username

Email ID of the authenticated user

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

Implements

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