Show / Hide Table of Contents

Class Video

A PageElement kind representing a video.

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

Properties

ETag

The ETag of the item.

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

Id

The video source's unique identifier for this video.

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

Source

The video source.

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

Url

An URL to a video. The URL is valid as long as the source video exists and sharing settings do not change.

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

VideoProperties

The properties of the video.

Declaration
[JsonProperty("videoProperties")]
public virtual VideoProperties VideoProperties { get; set; }
Property Value
Type Description
VideoProperties

Implements

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