Class: Google::Apis::SlidesV1::VideoProperties

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/slides_v1/classes.rb,
lib/google/apis/slides_v1/representations.rb,
lib/google/apis/slides_v1/representations.rb

Overview

The properties of the Video.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VideoProperties

Returns a new instance of VideoProperties.



5119
5120
5121
# File 'lib/google/apis/slides_v1/classes.rb', line 5119

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#auto_playBoolean Also known as: auto_play?

Whether to enable video autoplay when the page is displayed in present mode. Defaults to false. Corresponds to the JSON property autoPlay

Returns:

  • (Boolean)


5085
5086
5087
# File 'lib/google/apis/slides_v1/classes.rb', line 5085

def auto_play
  @auto_play
end

#endFixnum

The time at which to end playback, measured in seconds from the beginning of the video. If set, the end time should be after the start time. If not set or if you set this to a value that exceeds the video's length, the video will be played until its end. Corresponds to the JSON property end

Returns:

  • (Fixnum)


5094
5095
5096
# File 'lib/google/apis/slides_v1/classes.rb', line 5094

def end
  @end
end

#muteBoolean Also known as: mute?

Whether to mute the audio during video playback. Defaults to false. Corresponds to the JSON property mute

Returns:

  • (Boolean)


5099
5100
5101
# File 'lib/google/apis/slides_v1/classes.rb', line 5099

def mute
  @mute
end

#outlineGoogle::Apis::SlidesV1::Outline

The outline of a PageElement. If these fields are unset, they may be inherited from a parent placeholder if it exists. If there is no parent, the fields will default to the value used for new page elements created in the Slides editor, which may depend on the page element kind. Corresponds to the JSON property outline



5108
5109
5110
# File 'lib/google/apis/slides_v1/classes.rb', line 5108

def outline
  @outline
end

#startFixnum

The time at which to start playback, measured in seconds from the beginning of the video. If set, the start time should be before the end time. If you set this to a value that exceeds the video's length in seconds, the video will be played from the last second. If not set, the video will be played from the beginning. Corresponds to the JSON property start

Returns:

  • (Fixnum)


5117
5118
5119
# File 'lib/google/apis/slides_v1/classes.rb', line 5117

def start
  @start
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5124
5125
5126
5127
5128
5129
5130
# File 'lib/google/apis/slides_v1/classes.rb', line 5124

def update!(**args)
  @auto_play = args[:auto_play] if args.key?(:auto_play)
  @end = args[:end] if args.key?(:end)
  @mute = args[:mute] if args.key?(:mute)
  @outline = args[:outline] if args.key?(:outline)
  @start = args[:start] if args.key?(:start)
end