Class BatchUpdateSpreadsheetResponse
The reply for batch updating a spreadsheet.
Inheritance
System.Object
BatchUpdateSpreadsheetResponse
Implements
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 BatchUpdateSpreadsheetResponse : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { 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> |
SpreadsheetId
The spreadsheet the updates were applied to.
Declaration
[JsonProperty("spreadsheetId")]
public virtual string SpreadsheetId { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UpdatedSpreadsheet
The spreadsheet after updates were applied. This is only set if
BatchUpdateSpreadsheetRequest.include_spreadsheet_in_response is true
.
Declaration
[JsonProperty("updatedSpreadsheet")]
public virtual Spreadsheet UpdatedSpreadsheet { get; set; }
Property Value
Type | Description |
---|---|
Spreadsheet |