generated/google/apis/slides_v1/classes.rb in google-api-client-0.19.7 vs generated/google/apis/slides_v1/classes.rb in google-api-client-0.19.8

- old
+ new

@@ -168,18 +168,24 @@ # replies to some requests may be empty. # Corresponds to the JSON property `replies` # @return [Array<Google::Apis::SlidesV1::Response>] attr_accessor :replies + # Provides control over how write requests are executed. + # Corresponds to the JSON property `writeControl` + # @return [Google::Apis::SlidesV1::WriteControl] + attr_accessor :write_control + def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @presentation_id = args[:presentation_id] if args.key?(:presentation_id) @replies = args[:replies] if args.key?(:replies) + @write_control = args[:write_control] if args.key?(:write_control) end end # Describes the bullet of a paragraph. class Bullet @@ -1187,17 +1193,24 @@ # The properties of the Image. # Corresponds to the JSON property `imageProperties` # @return [Google::Apis::SlidesV1::ImageProperties] attr_accessor :image_properties + # The source URL is the URL used to insert the image. The source URL can be + # empty. + # Corresponds to the JSON property `sourceUrl` + # @return [String] + attr_accessor :source_url + def initialize(**args) update!(**args) end # Update properties of this object def update!(**args) @content_url = args[:content_url] if args.key?(:content_url) @image_properties = args[:image_properties] if args.key?(:image_properties) + @source_url = args[:source_url] if args.key?(:source_url) end end # The properties of the Image. class ImageProperties