Show / Hide Table of Contents

Class Channel

A single channel. Channels are custom groups of related websites and apps.

Inheritance
System.Object
Channel
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.DisplayVideo.v1.Data
Assembly: Google.Apis.DisplayVideo.v1.dll
Syntax
public class Channel : IDirectResponseSchema

Properties

AdvertiserId

The ID of the advertiser that owns the channel.

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

ChannelId

Output only. The unique ID of the channel. Assigned by the system.

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

DisplayName

Required. The display name of the channel. Must be UTF-8 encoded with a maximum length of 240 bytes.

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { 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

Name

Output only. The resource name of the channel.

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

NegativelyTargetedLineItemCount

Output only. Number of line items that are directly targeting this channel negatively.

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

PartnerId

The ID of the partner that owns the channel.

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

PositivelyTargetedLineItemCount

Output only. Number of line items that are directly targeting this channel positively.

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

Implements

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