Class: Google::Apis::SlidesV1::CreateLineRequest
- Inherits:
-
Object
- Object
- Google::Apis::SlidesV1::CreateLineRequest
- 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
Creates a line.
Instance Attribute Summary collapse
-
#category ⇒ String
The category of the line to be created.
-
#element_properties ⇒ Google::Apis::SlidesV1::PageElementProperties
Common properties for a page element.
-
#line_category ⇒ String
The category of the line to be created.
-
#object_id_prop ⇒ String
A user-supplied object ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateLineRequest
constructor
A new instance of CreateLineRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateLineRequest
Returns a new instance of CreateLineRequest.
425 426 427 |
# File 'lib/google/apis/slides_v1/classes.rb', line 425 def initialize(**args) update!(**args) end |
Instance Attribute Details
#category ⇒ String
The category of the line to be created. The exact line type created is
determined based on the category and how it's routed to connect to other page
elements. If you specify both a category
and a line_category
, the
category
takes precedence. If you do not specify a value for category
, but
specify a value for line_category
, then the specified line_category
value
is used. If you do not specify either, then STRAIGHT is used.
Corresponds to the JSON property category
398 399 400 |
# File 'lib/google/apis/slides_v1/classes.rb', line 398 def category @category end |
#element_properties ⇒ Google::Apis::SlidesV1::PageElementProperties
Common properties for a page element. Note: When you initially create a
PageElement, the API may modify the values of both size
and transform
, but
the visual size will be unchanged.
Corresponds to the JSON property elementProperties
405 406 407 |
# File 'lib/google/apis/slides_v1/classes.rb', line 405 def element_properties @element_properties end |
#line_category ⇒ String
The category of the line to be created. Deprecated: use category
instead.
The exact line type created is determined based on the category and how it's
routed to connect to other page elements. If you specify both a category
and
a line_category
, the category
takes precedence.
Corresponds to the JSON property lineCategory
413 414 415 |
# File 'lib/google/apis/slides_v1/classes.rb', line 413 def line_category @line_category end |
#object_id_prop ⇒ String
A user-supplied object ID. If you specify an ID, it must be unique among all
pages and page elements in the presentation. The ID must start with an
alphanumeric character or an underscore (matches regex [a-zA-Z0-9_]
);
remaining characters may include those as well as a hyphen or colon (matches
regex [a-zA-Z0-9_-:]
). The length of the ID must not be less than 5 or
greater than 50. If you don't specify an ID, a unique one is generated.
Corresponds to the JSON property objectId
423 424 425 |
# File 'lib/google/apis/slides_v1/classes.rb', line 423 def object_id_prop @object_id_prop end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
430 431 432 433 434 435 |
# File 'lib/google/apis/slides_v1/classes.rb', line 430 def update!(**args) @category = args[:category] if args.key?(:category) @element_properties = args[:element_properties] if args.key?(:element_properties) @line_category = args[:line_category] if args.key?(:line_category) @object_id_prop = args[:object_id_prop] if args.key?(:object_id_prop) end |