Table of Contents

Class ComparisonFilter

Namespace
Glitch9.AIDevKit

A filter used to compare a specified attribute key to a given value using a defined comparison operation.

public class ComparisonFilter : IFileSearchFilter
Inheritance
object
ComparisonFilter
Implements

Properties

Key

Required. The key to compare against the value.

public string Key { get; set; }

Property Value

string

Type

Required. Specifies the comparison operator: eq, ne, gt, gte, lt, lte.

public ComparisonType Type { get; set; }

Property Value

ComparisonType

Value

Required. The value to compare against the attribute key; supports string, number, or boolean types.

public object Value { get; set; }

Property Value

object