Show / Hide Table of Contents

Class Webproperty

JSON template for an Analytics web property.

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

Properties

AccountId

Account ID to which this web property belongs.

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

ChildLink

Child link for this web property. Points to the list of views (profiles) for this web property.

Declaration
[JsonProperty("childLink")]
public virtual Webproperty.ChildLinkData ChildLink { get; set; }
Property Value
Type Description
Webproperty.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 this web property was created.

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

DataRetentionResetOnNewActivity

Set to true to reset the retention period of the user identifier with each new event from that user (thus setting the expiration date to current time plus retention period). Set to false to delete data associated with the user identifier automatically after the rentention period. This property cannot be set on insert.

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

DataRetentionTtl

The length of time for which user and event data is retained. This property cannot be set on insert.

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

DefaultProfileId

Default view (profile) ID.

Declaration
[JsonProperty("defaultProfileId")]
public virtual long? DefaultProfileId { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

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

IndustryVertical

The industry vertical/category selected for this web property.

Declaration
[JsonProperty("industryVertical")]
public virtual string IndustryVertical { 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 WebProperty.

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

Name of this web property.

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

ParentLink

Parent link for this web property. Points to the account to which this web property belongs.

Declaration
[JsonProperty("parentLink")]
public virtual Webproperty.ParentLinkData ParentLink { get; set; }
Property Value
Type Description
Webproperty.ParentLinkData

Permissions

Permissions the user has for this web property.

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

ProfileCount

View (Profile) count for this web property.

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

SelfLink

Link for this web property.

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

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>

Updated

System.DateTime representation of UpdatedRaw.

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

UpdatedRaw

Time this web property was last modified.

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

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