Class ListItemImportResult
Result information of a list item import operation
Inheritance
ListItemImportResult
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class ListItemImportResult
Properties
Number of list items imported
Declaration
[JsonProperty("importedListItemCount", Required = Required.Always)]
public int ImportedListItemCount { get; set; }
Property Value
Ids of the list items that were successfully imported
Declaration
[JsonProperty("importedListItemIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> ImportedListItemIds { get; set; }
Property Value
Number of list items skipped during import phase because they were already found in the system
Declaration
[JsonProperty("skippedListItemCount", Required = Required.Always)]
public int SkippedListItemCount { get; set; }
Property Value
Ids of the list items that were not imported because already found in the system or due to errors
Declaration
[JsonProperty("skippedListItemIds", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<string> SkippedListItemIds { get; set; }
Property Value
Total number of list items requested to be imported
Declaration
[JsonProperty("totalListItemCount", Required = Required.Always)]
public int TotalListItemCount { get; set; }
Property Value
Methods
Declaration
public static ListItemImportResult FromJson(string data)
Parameters
Returns