Show / Hide Table of Contents

Class Thumbnail

A thumbnail is an image representing a YouTube resource.

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

Properties

ETag

The ETag of the item.

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

Height

(Optional) Height of the thumbnail image.

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

Url

The thumbnail image's URL.

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

Width

(Optional) Width of the thumbnail image.

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

Implements

IDirectResponseSchema
Back to top