Show / Hide Table of Contents

Class CreateLineRequest

Creates a line.

Inheritance
System.Object
CreateLineRequest
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class CreateLineRequest : IDirectResponseSchema

Properties

Category

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.

Declaration
[JsonProperty("category")]
public virtual string Category { get; set; }
Property Value
Type Description
System.String

ElementProperties

The element properties for the line.

Declaration
[JsonProperty("elementProperties")]
public virtual PageElementProperties ElementProperties { get; set; }
Property Value
Type Description
PageElementProperties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LineCategory

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.

Declaration
[JsonProperty("lineCategory")]
public virtual string LineCategory { get; set; }
Property Value
Type Description
System.String

ObjectId

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.

Declaration
[JsonProperty("objectId")]
public virtual string ObjectId { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top