Show / Hide Table of Contents

Class InvideoTiming

Describes a temporal position of a visual widget inside a video.

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

Properties

DurationMs

Defines the duration in milliseconds for which the promotion should be displayed. If missing, the client should use the default.

Declaration
[JsonProperty("durationMs")]
public virtual ulong? DurationMs { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

ETag

The ETag of the item.

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

OffsetMs

Defines the time at which the promotion will appear. Depending on the value of type the value of the offsetMs field will represent a time offset from the start or from the end of the video, expressed in milliseconds.

Declaration
[JsonProperty("offsetMs")]
public virtual ulong? OffsetMs { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Type

Describes a timing type. If the value is offsetFromStart, then the offsetMs field represents an offset from the start of the video. If the value is offsetFromEnd, then the offsetMs field represents an offset from the end of the video.

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

Implements

IDirectResponseSchema
Back to top