Show / Hide Table of Contents

Class InvideoPromotion

Describes an invideo promotion campaign consisting of multiple promoted items. A campaign belongs to a single channel_id.

Inheritance
System.Object
InvideoPromotion
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.YouTube.v3.Data
Assembly: Google.Apis.YouTube.v3.dll
Syntax
public class InvideoPromotion : IDirectResponseSchema

Properties

DefaultTiming

The default temporal position within the video where the promoted item will be displayed. Can be overridden by more specific timing in the item.

Declaration
[JsonProperty("defaultTiming")]
public virtual InvideoTiming DefaultTiming { get; set; }
Property Value
Type Description
InvideoTiming

ETag

The ETag of the item.

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

Items

List of promoted items in decreasing priority.

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

Position

The spatial position within the video where the promoted item will be displayed.

Declaration
[JsonProperty("position")]
public virtual InvideoPosition Position { get; set; }
Property Value
Type Description
InvideoPosition

UseSmartTiming

Indicates whether the channel's promotional campaign uses "smart timing." This feature attempts to show promotions at a point in the video when they are more likely to be clicked and less likely to disrupt the viewing experience. This feature also picks up a single promotion to show on each video.

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

Implements

IDirectResponseSchema
Back to top