Show / Hide Table of Contents

Class BatchUpdatePresentationResponse

Response message from a batch update.

Inheritance
System.Object
BatchUpdatePresentationResponse
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 BatchUpdatePresentationResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

PresentationId

The presentation the updates were applied to.

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

Replies

The reply of the updates. This maps 1:1 with the updates, although replies to some requests may be empty.

Declaration
[JsonProperty("replies")]
public virtual IList<Response> Replies { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Response>

WriteControl

The updated write control after applying the request.

Declaration
[JsonProperty("writeControl")]
public virtual WriteControl WriteControl { get; set; }
Property Value
Type Description
WriteControl

Implements

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