Class BatchResponseRow
Row in a batch operation response
Inheritance
BatchResponseRow
Namespace: System.Dynamic.ExpandoObject
Syntax
[GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
public class BatchResponseRow
Properties
If the operation did not succeed, this contains error information.
Declaration
[JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ErrorResponse 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
Status code of the operation.
Declaration
[JsonProperty("status", Required = Required.Always)]
public int Status { get; set; }
Property Value
Indicates if the operation succeeded.
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 BatchResponseRow FromJson(string data)
Parameters
Returns