Show / Hide Table of Contents

Class UrlChannel

Representation of a URL channel. URL channels allow you to track the performance of particular pages in your site; see URL channels for more information.

Inheritance
System.Object
UrlChannel
Implements
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.Adsense.v2.Data
Assembly: Google.Apis.Adsense.v2.dll
Syntax
public class UrlChannel : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Name

Resource name of the URL channel. Format: accounts/{account}/adclients/{adclient}/urlchannels/{urlchannel}

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

ReportingDimensionId

Output only. Unique ID of the custom channel as used in the URL_CHANNEL_ID reporting dimension.

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

UriPattern

URI pattern of the channel. Does not include "http://" or "https://". Example: www.example.com/home

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

Implements

IDirectResponseSchema
In This Article
Back to top