Enum InstanceSettingValueType
Defines the different values for the type of the value for the instance setting.
Namespace: Relativity.Testing.Framework.Models
Assembly: Relativity.Testing.Framework.dll
Syntax
public enum InstanceSettingValueType
Fields
| Name | Description |
|---|---|
| Default | Indicates the default value type. By default it is text. |
| Integer32 | Indicates that the value be treated as a whole number from -2147483648 to 2147483647. |
| Integer64 | Indicates that the value should be treated as a whole number from -9223372036854775808 to 9223372036854775807. |
| NonnegativeInt32 | Indicates that the value should be treated as a whole number from 0 to 2147483647. |
| NonnegativeInt64 | Indicates that the value should be treated as a whole number from 0 to 9223372036854775807. |
| PositiveInt32 | Indicates that the value should be treated as a whole number from 1 to 2147483647. |
| PositiveInt64 | Indicates that the value should be treated as a whole number from 1 to 9223372036854775807. |
| Text | Indicates that the value should be treated as text. |
| TrueFalse | Indicates that the value should be treated as a Boolean with only True or False valid values. |
| Unknown | Someone made a different choice in the environment, and we're not able to map it back to an enum. |