Class: Google::Apis::SlidesV1::DeleteParagraphBulletsRequest

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

Overview

Deletes bullets from all of the paragraphs that overlap with the given text index range. The nesting level of each paragraph will be visually preserved by adding indent to the start of the corresponding paragraph.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ DeleteParagraphBulletsRequest

Returns a new instance of DeleteParagraphBulletsRequest



2900
2901
2902
# File 'generated/google/apis/slides_v1/classes.rb', line 2900

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

Instance Attribute Details

#cell_locationGoogle::Apis::SlidesV1::TableCellLocation

A location of a single table cell within a table. Corresponds to the JSON property cellLocation



2898
2899
2900
# File 'generated/google/apis/slides_v1/classes.rb', line 2898

def cell_location
  @cell_location
end

#object_id_propString

The object ID of the shape or table containing the text to delete bullets from. Corresponds to the JSON property objectId

Returns:

  • (String)


2887
2888
2889
# File 'generated/google/apis/slides_v1/classes.rb', line 2887

def object_id_prop
  @object_id_prop
end

#text_rangeGoogle::Apis::SlidesV1::Range

Specifies a contiguous range of an indexed collection, such as characters in text. Corresponds to the JSON property textRange



2893
2894
2895
# File 'generated/google/apis/slides_v1/classes.rb', line 2893

def text_range
  @text_range
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2905
2906
2907
2908
2909
# File 'generated/google/apis/slides_v1/classes.rb', line 2905

def update!(**args)
  @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop)
  @text_range = args[:text_range] if args.key?(:text_range)
  @cell_location = args[:cell_location] if args.key?(:cell_location)
end