Class CreateSlideRequest
Creates a slide.
Implements
Inherited Members
Namespace: Google.Apis.Slides.v1.Data
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class CreateSlideRequest : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
InsertionIndex
The optional zero-based index indicating where to insert the slides. If you don't specify an index, the slide is created at the end.
Declaration
[JsonProperty("insertionIndex")]
public virtual int? InsertionIndex { get; set; }
Property Value
Type | Description |
---|---|
int? |
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 ID length must be between 5 and 50 characters, inclusive. 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 |
---|---|
string |
PlaceholderIdMappings
An optional list of object ID mappings from the placeholder(s) on the layout to the placeholders that are
created on the slide from the specified layout. Can only be used when slide_layout_reference
is specified.
Declaration
[JsonProperty("placeholderIdMappings")]
public virtual IList<LayoutPlaceholderIdMapping> PlaceholderIdMappings { get; set; }
Property Value
Type | Description |
---|---|
IList<LayoutPlaceholderIdMapping> |
SlideLayoutReference
Layout reference of the slide to be inserted, based on the current master, which is one of the following:
- The master of the previous slide index. - The master of the first slide, if the insertion_index is zero. -
The first master in the presentation, if there are no slides. If the LayoutReference is not found in the
current master, a 400 bad request error is returned. If you don't specify a layout reference, the slide uses
the predefined
BLANK
layout.
Declaration
[JsonProperty("slideLayoutReference")]
public virtual LayoutReference SlideLayoutReference { get; set; }
Property Value
Type | Description |
---|---|
LayoutReference |