Table of Contents

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

string

ItemType

Specifies the item type to aid with casting within the batch operation.

Type ItemType { get; }

Property Value

Type

PropertyValues

The dictionary containing property names and updated values.

Dictionary<string, object?> PropertyValues { get; }

Property Value

Dictionary<string, object>