Class BulkResponseRow
Row information of a bulk response
Inheritance
BulkResponseRow
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class BulkResponseRow
Properties
Declaration
[JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Error { get; set; }
Property Value
Declaration
[JsonProperty("id", Required = Required.Always)]
[Required]
public string Id { get; set; }
Property Value
The identifier provided by user in the corresponding request (or null if none was provided). Used only in bulk creation.
Declaration
[JsonProperty("requestId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string RequestId { get; set; }
Property Value
Declaration
[JsonProperty("status", Required = Required.Always)]
public int Status { get; set; }
Property Value
True if item successfully saved. False otherwise.
Declaration
[JsonProperty("succeeded", Required = Required.Always)]
public bool Succeeded { get; set; }
Property Value
Declaration
[JsonProperty("version", Required = Required.Always)]
public long Version { get; set; }
Property Value
Methods
Declaration
public static BulkResponseRow FromJson(string data)
Parameters
Returns