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.



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

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



3661
3662
3663
# File 'lib/google/apis/slides_v1/classes.rb', line 3661

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



3669
3670
3671
# File 'lib/google/apis/slides_v1/classes.rb', line 3669

def shadow
  @shadow
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3676
3677
3678
3679
# File 'lib/google/apis/slides_v1/classes.rb', line 3676

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