Class ListItemFieldsBatchUpdateFilterRequest
Request to batch update list items' fields based on a filter
Inheritance
ListItemFieldsBatchUpdateFilterRequest
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class ListItemFieldsBatchUpdateFilterRequest
Properties
Allow 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
Filters the list items on which the change commands must be applied.
Declaration
[JsonProperty("filterRequest", Required = Required.Always)]
[Required]
public ListItemFilterRequest FilterRequest { 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 ListItemFieldsBatchUpdateFilterRequest FromJson(string data)
Parameters
Returns