Table of Contents

Class SampleFilterModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

Class to define sample filters

public class SampleFilterModel
Inheritance
SampleFilterModel
Inherited Members

Properties

Name

Name of a field in a sample record

[JsonProperty("Name", Required = Required.Always)]
[Required]
public string Name { get; set; }

Property Value

string

Op

Operator, supported operators:
"strt": starts with,
"con" : contains,
"ncon": not contains,
"eq" : equals,
"lt" : less than,
"gt" : greater than,
"lte" : less or equal,
"gte" : greater or equal,
"neq" : not equal,
"in" : in - value should be a comma-separated list of values

[JsonProperty("Op", Required = Required.Always)]
[Required]
public string Op { get; set; }

Property Value

string

Value

Value of the sample filter model.

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

Property Value

string