Class DataPipelineContentItemPartBase
- Namespace
- FoundationaLLM.Common.Models.DataPipelines
- Assembly
- FoundationaLLM.Common.dll
Represents the common properties of a content item part.
public class DataPipelineContentItemPartBase
- Inheritance
-
DataPipelineContentItemPartBase
- Derived
- Inherited Members
- Extension Methods
Properties
ContentItemCanonicalId
Gets or sets the canonical identifier of the content item.
[JsonPropertyName("content_item_canonical_id")]
public string? ContentItemCanonicalId { get; set; }
Property Value
IndexEntryId
Gets or sets the identifier of the index entry associated with this content item part.
[JsonPropertyName("index_entry_id")]
public string? IndexEntryId { get; set; }
Property Value
Metadata
Gets or sets the metadata associated with the content item part.
[JsonPropertyName("metadata")]
public Dictionary<string, string>? Metadata { get; set; }
Property Value
Position
Gets or sets the position of the part within the content item.
[JsonPropertyName("position")]
public int Position { get; set; }