kCura.Relativity.ImportAPI.Data.Field
Represents a field, which is used to store data for documents and RDOs.
namespace kCura.Relativity.ImportAPI.Data
{
public class Field : Artifact
{
public int? AssociatedObjectTypeID { get; }
public bool UseUnicode { get; }
public FieldTypeEnum FieldTypeID { get; }
public int? FieldLength { get; }
public FieldCategoryEnum FieldCategory { get; }
public IEnumerable<Guid> Guids { get; }
public bool EnableDataGrid { get; }
public Field();
}
}