Search Results for

    Show / Hide Table of Contents

    Class ListItemFieldsBatchUpdateRequest

    Request to batch update list items' fields based on list item IDs

    Inheritance
    object
    ListItemFieldsBatchUpdateRequest
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    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

    AllowMissingDependencies

    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
    bool

    ChangeCommands

    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
    ICollection<MetadataValuesChangeCommandBase>

    ListItemIds

    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
    ICollection<string>

    NotifyProgress

    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
    bool

    Methods

    FromJson(string)

    Declaration
    public static ListItemFieldsBatchUpdateRequest FromJson(string data)
    Parameters
    string data

    Returns
    ListItemFieldsBatchUpdateRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX