Class ListItemFieldsBatchUpdateRequest
Request to batch update list items' fields based on list item IDs
Inheritance
ListItemFieldsBatchUpdateRequest
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class ListItemFieldsBatchUpdateRequest
Properties
Allows updating list items with references to list items or contents that do not exist in the system.
Declaration
[JsonProperty("allowMissingDependencies", Required = Required.Always)]
public bool AllowMissingDependencies { get; set; }
Property Value
Changes that need to be applied to the existing list items. The same set of changes is applied to all list items.
Declaration
[JsonProperty("changeCommands", Required = Required.Always)]
[Required]
public ICollection<MetadataValuesChangeCommandBase> ChangeCommands { get; set; }
Property Value
The ids of the list items whose fields need to be updated.
Declaration
[JsonProperty("listItemIds", Required = Required.Always)]
[Required]
public ICollection<string> ListItemIds { get; set; }
Property Value
Create a progress notification and notify on progress. Notifications are shown in the UI only to the same use who triggered the batch update.
Declaration
[JsonProperty("notifyProgress", Required = Required.Always)]
public bool NotifyProgress { get; set; }
Property Value
Methods
Declaration
public static ListItemFieldsBatchUpdateRequest FromJson(string data)
Parameters
Returns