class Google::Apis::SlidesV1::UpdateLineCategoryRequest
Updates the category of a line.
Attributes
line_category[RW]
The line category to update to. The exact line type is determined based on the category to update to and how it's routed to connect to other page elements. Corresponds to the JSON property `lineCategory` @return [String]
object_id_prop[RW]
The object ID of the line the update is applied to. Only a line with a category indicating it is a “connector” can be updated. The line may be rerouted after updating its category. Corresponds to the JSON property `objectId` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/slides_v1/classes.rb, line 4449 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/slides_v1/classes.rb, line 4454 def update!(**args) @line_category = args[:line_category] if args.key?(:line_category) @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop) end