Show / Hide Table of Contents

Class SkippableSetting

Skippable Settings

Inheritance
System.Object
SkippableSetting
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.Dfareporting.v3_3.Data
Assembly: Google.Apis.Dfareporting.v3_3.dll
Syntax
public class SkippableSetting : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Kind

Identifies what kind of resource this is. Value: the fixed string "dfareporting#skippableSetting".

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

ProgressOffset

Amount of time to play videos served to this placement before counting a view. Applicable when skippable is true.

Declaration
[JsonProperty("progressOffset")]
public virtual VideoOffset ProgressOffset { get; set; }
Property Value
Type Description
VideoOffset

SkipOffset

Amount of time to play videos served to this placement before the skip button should appear. Applicable when skippable is true.

Declaration
[JsonProperty("skipOffset")]
public virtual VideoOffset SkipOffset { get; set; }
Property Value
Type Description
VideoOffset

Skippable

Whether the user can skip creatives served to this placement.

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

Implements

IDirectResponseSchema
In This Article
Back to top