Class: Google::Apis::SlidesV1::SpeakerSpotlightProperties

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 SpeakerSpotlight.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SpeakerSpotlightProperties

Returns a new instance of SpeakerSpotlightProperties.



3667
3668
3669
# File 'lib/google/apis/slides_v1/classes.rb', line 3667

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

Instance Attribute Details

#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



3657
3658
3659
# File 'lib/google/apis/slides_v1/classes.rb', line 3657

def outline
  @outline
end

#shadowGoogle::Apis::SlidesV1::Shadow

The shadow properties of a page element. 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 shadow



3665
3666
3667
# File 'lib/google/apis/slides_v1/classes.rb', line 3665

def shadow
  @shadow
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3672
3673
3674
3675
# File 'lib/google/apis/slides_v1/classes.rb', line 3672

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