Interface IPatchOperationItem
- Namespace
- FoundationaLLM.Common.Models.Azure.CosmosDB
- Assembly
- FoundationaLLM.Common.dll
Represents an item that can be updated by a patch operation.
public interface IPatchOperationItem
- Extension Methods
Properties
ItemId
The identifier of the item being updated.
string ItemId { get; }
Property Value
ItemType
Specifies the item type to aid with casting within the batch operation.
Type ItemType { get; }
Property Value
PropertyValues
The dictionary containing property names and updated values.
Dictionary<string, object?> PropertyValues { get; }