Show / Hide Table of Contents

Class BatchUpdateSpreadsheetRequest

The request for updating any aspect of a spreadsheet.

Inheritance
System.Object
BatchUpdateSpreadsheetRequest
Implements
IDirectResponseSchema
Namespace: Google.Apis.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class BatchUpdateSpreadsheetRequest : object, IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

IncludeSpreadsheetInResponse

Determines if the update response should include the spreadsheet resource.

Declaration
public virtual Nullable<bool> IncludeSpreadsheetInResponse { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Requests

A list of updates to apply to the spreadsheet. Requests will be applied in the order they are specified. If any request is not valid, no requests will be applied.

Declaration
public virtual IList<Request> Requests { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Request>

ResponseIncludeGridData

True if grid data should be returned. Meaningful only if if include_spreadsheet_in_response is 'true'. This parameter is ignored if a field mask was set in the request.

Declaration
public virtual Nullable<bool> ResponseIncludeGridData { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ResponseRanges

Limits the ranges included in the response spreadsheet. Meaningful only if include_spreadsheet_response is 'true'.

Declaration
public virtual IList<string> ResponseRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
Back to top