Search Results for

    Show / Hide Table of Contents

    Class SnapshotCustomerSearchRequest

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

    Properties

    CustomerAlias

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

    CustomerId

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

    Limit

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

    RepositoryNames

    Declaration
    [JsonProperty("repositoryNames", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<string> RepositoryNames { get; set; }
    Property Value
    ICollection<string>

    SearchString

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

    SnapshotDataType

    Limits the returned snapshots to the ones containing data of the specified type (customer, export or history). This search criteria is applied only if no repository name
    is specified.

    Declaration
    [JsonProperty("snapshotDataType", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    [JsonConverter(typeof(StringEnumConverter))]
    public SnapshotDataType? SnapshotDataType { get; set; }
    Property Value
    SnapshotDataType?

    Start

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

    Methods

    FromJson(string)

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

    Returns
    SnapshotCustomerSearchRequest

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX