generated/google/apis/slides_v1/classes.rb in google-api-client-0.17.1 vs generated/google/apis/slides_v1/classes.rb in google-api-client-0.17.2
- old
+ new
@@ -3293,10 +3293,18 @@
# Determining the rendered value of the property depends on the corresponding
# property_state field value.
class ShapeProperties
include Google::Apis::Core::Hashable
+ # The alignment of the content in the shape. If unspecified,
+ # the alignment is inherited from a parent placeholder if it exists. If the
+ # shape has no parent, the default alignment matches the alignment for new
+ # shapes created in the Slides editor.
+ # Corresponds to the JSON property `contentAlignment`
+ # @return [String]
+ attr_accessor :content_alignment
+
# A hypertext link.
# Corresponds to the JSON property `link`
# @return [Google::Apis::SlidesV1::Link]
attr_accessor :link
@@ -3327,10 +3335,11 @@
update!(**args)
end
# Update properties of this object
def update!(**args)
+ @content_alignment = args[:content_alignment] if args.key?(:content_alignment)
@link = args[:link] if args.key?(:link)
@outline = args[:outline] if args.key?(:outline)
@shadow = args[:shadow] if args.key?(:shadow)
@shape_background_fill = args[:shape_background_fill] if args.key?(:shape_background_fill)
end
@@ -3814,10 +3823,16 @@
# The properties of the TableCell.
class TableCellProperties
include Google::Apis::Core::Hashable
+ # The alignment of the content in the table cell. The default alignment
+ # matches the alignment for newly created table cells in the Slides editor.
+ # Corresponds to the JSON property `contentAlignment`
+ # @return [String]
+ attr_accessor :content_alignment
+
# The table cell background fill.
# Corresponds to the JSON property `tableCellBackgroundFill`
# @return [Google::Apis::SlidesV1::TableCellBackgroundFill]
attr_accessor :table_cell_background_fill
@@ -3825,9 +3840,10 @@
update!(**args)
end
# Update properties of this object
def update!(**args)
+ @content_alignment = args[:content_alignment] if args.key?(:content_alignment)
@table_cell_background_fill = args[:table_cell_background_fill] if args.key?(:table_cell_background_fill)
end
end
# Properties of each column in a table.