Class UpdateItemRequest
Update an item in a form.
Implements
Inherited Members
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 |