<PackageReference Include="Relativity.Processing.SDK" Version="13.29.419" />

Relativity.Processing.V1.Services.Interfaces.DTOs.CatalogField

public class CatalogField
Catalog Field DTO
public int? ArtifactId { get; set; }

Adding enumeration for ArtifactId insert as optional parameter

public Guid CatalogFieldGuid { get; set; }

The unique identifier of the Catalog Field

public string Category { get; set; }

Category of the field

public string Description { get; set; }

Description of the nature of the data that the Catalog Field is intended to contain

public string FieldName { get; set; }

The name of the Catalog Field, i.e. "Author", "Last Updated"

public string FieldType { get; set; }

Relativity Field Type of the field

public int Length { get; set; }

The maximum length of the field; only applies to Fixed Length (FieldType.Varchar) fields.

public CatalogField()

Parameterless constructor

public CatalogField(int? artifactId, Guid catalogFieldGuid, string fieldName, string description, string fieldType, string category, int length = 0)

Public constructor