class Google::Apis::SlidesV1::Video
A PageElement
kind representing a video.
Attributes
id[RW]
The video source's unique identifier for this video. Corresponds to the JSON property `id` @return [String]
source[RW]
The video source. Corresponds to the JSON property `source` @return [String]
url[RW]
An URL to a video. The URL is valid as long as the source video exists and sharing settings do not change. Corresponds to the JSON property `url` @return [String]
video_properties[RW]
The properties of the Video
. Corresponds to the JSON property `videoProperties` @return [Google::Apis::SlidesV1::VideoProperties]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 5112 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 5117 def update!(**args) @id = args[:id] if args.key?(:id) @source = args[:source] if args.key?(:source) @url = args[:url] if args.key?(:url) @video_properties = args[:video_properties] if args.key?(:video_properties) end