Show / Hide Table of Contents

Class UpdateItemRequest

Update an item in a form.

Inheritance
object
UpdateItemRequest
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Forms.v1.Data
Assembly: Google.Apis.Forms.v1.dll
Syntax
public class UpdateItemRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Item

Required. New values for the item. Note that item and question IDs are used if they are provided (and are in the field mask). If an ID is blank (and in the field mask) a new ID is generated. This means you can modify an item by getting the form via forms.get, modifying your local copy of that item to be how you want it, and using UpdateItemRequest to write it back, with the IDs being the same (or not in the field mask).

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

Location

Required. The location identifying the item to update.

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

UpdateMask

Required. Only values named in this mask are changed.

Declaration
[JsonProperty("updateMask")]
public virtual object UpdateMask { get; set; }
Property Value
Type Description
object

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX