Show / Hide Table of Contents

Class WebPropertySummary

JSON template for an Analytics WebPropertySummary. WebPropertySummary returns basic information (i.e., summary) for a web property.

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

Properties

ETag

The ETag of the item.

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

Id

Web property ID of the form UA-XXXXX-YY.

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

InternalWebPropertyId

Internal ID for this web property.

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

Kind

Resource type for Analytics WebPropertySummary.

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

Level

Level for this web property. Possible values are STANDARD or PREMIUM.

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

Name

Web property name.

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

Profiles

List of profiles under this web property.

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

Starred

Indicates whether this web property is starred or not.

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

WebsiteUrl

Website url for this web property.

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

Implements

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