Show / Hide Table of Contents

Class BatchUpdateValuesRequest

The request for updating more than one range of values in a spreadsheet.

Inheritance
System.Object
BatchUpdateValuesRequest
Implements
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.Sheets.v4.Data
Assembly: Google.Apis.Sheets.v4.dll
Syntax
public class BatchUpdateValuesRequest : IDirectResponseSchema

Properties

Data

The new values to apply to the spreadsheet.

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

ETag

The ETag of the item.

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

IncludeValuesInResponse

Determines if the update response should include the values of the cells that were updated. By default, responses do not include the updated values. The updatedData field within each of the BatchUpdateValuesResponse.responses contains the updated values. If the range to write was larger than the range actually written, the response includes all values in the requested range (excluding trailing empty rows and columns).

Declaration
[JsonProperty("includeValuesInResponse")]
public virtual bool? IncludeValuesInResponse { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

ResponseDateTimeRenderOption

Determines how dates, times, and durations in the response should be rendered. This is ignored if response_value_render_option is FORMATTED_VALUE. The default dateTime render option is SERIAL_NUMBER.

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

ResponseValueRenderOption

Determines how values in the response should be rendered. The default render option is FORMATTED_VALUE.

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

ValueInputOption

How the input data should be interpreted.

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

Implements

IDirectResponseSchema
In This Article
Back to top