Search Results for

    Show / Hide Table of Contents

    Class BulkResponseRow

    Row information of a bulk response

    Inheritance
    object
    BulkResponseRow
    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 BulkResponseRow

    Properties

    Error

    Eventual error.

    Declaration
    [JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string Error { get; set; }
    Property Value
    string

    Id

    ID of the document.

    Declaration
    [JsonProperty("id", Required = Required.Always)]
    [Required]
    public string Id { get; set; }
    Property Value
    string

    RequestId

    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
    string

    Status

    Returned status code.

    Declaration
    [JsonProperty("status", Required = Required.Always)]
    public int Status { get; set; }
    Property Value
    int

    Succeeded

    True if item successfully saved. False otherwise.

    Declaration
    [JsonProperty("succeeded", Required = Required.Always)]
    public bool Succeeded { get; set; }
    Property Value
    bool

    Version

    Version of the document.

    Declaration
    [JsonProperty("version", Required = Required.Always)]
    public long Version { get; set; }
    Property Value
    long

    Methods

    FromJson(string)

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

    Returns
    BulkResponseRow

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX