Class ItemIndexValue
A value to be indexed
Inherited Members
Namespace: Algenta.Colectica.Model
Assembly: Algenta.Colectica.Model.dll
Syntax
public class ItemIndexValue
Properties
BoolValue
A bool value to index
Declaration
public bool? BoolValue { get; set; }
Property Value
Type | Description |
---|---|
bool? |
IntValue
A int value to index
Declaration
public int? IntValue { get; set; }
Property Value
Type | Description |
---|---|
int? |
Name
The name of the field
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
ObjectValue
A object value to index
Declaration
public object ObjectValue { get; set; }
Property Value
Type | Description |
---|---|
object |
ObjectValues
A list of object value to index
Declaration
public List<object> ObjectValues { get; set; }
Property Value
Type | Description |
---|---|
List<object> |
StringValue
A string value to index
Declaration
public string StringValue { get; set; }
Property Value
Type | Description |
---|---|
string |
StringValues
A list of string value to index
Declaration
public List<string> StringValues { get; set; }
Property Value
Type | Description |
---|---|
List<string> |