Show / Hide Table of Contents

Class CustomChannel

Inheritance
System.Object
CustomChannel
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.AdSense.v1_4.Data
Assembly: Google.Apis.AdSense.v1_4.dll
Syntax
public class CustomChannel : IDirectResponseSchema

Properties

Code

Code of this custom channel, not necessarily unique across ad clients.

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

ETag

The ETag of the item.

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

Id

Unique identifier of this custom channel. This should be considered an opaque identifier; it is not safe to rely on it being in any particular format.

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

Kind

Kind of resource this is, in this case adsense#customChannel.

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

Name

Name of this custom channel.

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

TargetingInfo

The targeting information of this custom channel, if activated.

Declaration
[JsonProperty("targetingInfo")]
public virtual CustomChannel.TargetingInfoData TargetingInfo { get; set; }
Property Value
Type Description
CustomChannel.TargetingInfoData

Implements

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