Class ListItemUpdateRequest
Request to update an existing list item
Inheritance
ListItemUpdateRequest
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class ListItemUpdateRequest
Properties
The content data of the list item. It's an object of dynamic metadata whose structure is defined in the Content schema of the list item.
Declaration
[JsonProperty("content", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public object Content { get; set; }
Property Value
Options to modify the behavior for updating the content.
Merge: the values specified in the Content object are merged to the existing content.
Replace: the values specified in the Content object entirely replace any existing content.
Defaults to Merge.
Declaration
[JsonProperty("contentFieldsUpdateOptions", Required = Required.Always)]
[Required(AllowEmptyStrings = true)]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateOption ContentFieldsUpdateOptions { get; set; }
Property Value
Methods
Declaration
public static ListItemUpdateRequest FromJson(string data)
Parameters
Returns