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