Class ListItemImportResult
Result information of a list item import operation
Inherited Members
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
ImportedListItemCount
Number of list items imported
Declaration
[JsonProperty("importedListItemCount", Required = Required.Always)]
public int ImportedListItemCount { get; set; }
Property Value
ImportedListItemIds
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
SkippedListItemCount
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
SkippedListItemIds
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
TotalListItemCount
Total number of list items requested to be imported
Declaration
[JsonProperty("totalListItemCount", Required = Required.Always)]
public int TotalListItemCount { get; set; }