Share via


UnknownMemoryItem Constructors

Definition

Overloads

UnknownMemoryItem()

Source:
UnknownMemoryItem.cs

Initializes a new instance of UnknownMemoryItem for deserialization.

public UnknownMemoryItem();
Public Sub New ()

Applies to

UnknownMemoryItem(String, DateTimeOffset, String, String, MemoryItemKind, IDictionary<String,BinaryData>)

Source:
UnknownMemoryItem.cs

Initializes a new instance of UnknownMemoryItem.

public UnknownMemoryItem(string memoryId, DateTimeOffset updatedAt, string scope, string content, Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryItemKind kind, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.MemoryStore.UnknownMemoryItem : string * DateTimeOffset * string * string * Azure.AI.AgentServer.Contracts.Generated.MemoryStore.MemoryItemKind * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.MemoryStore.UnknownMemoryItem
Public Sub New (memoryId As String, updatedAt As DateTimeOffset, scope As String, content As String, kind As MemoryItemKind, serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

memoryId
String

The unique ID of the memory item.

updatedAt
DateTimeOffset

The last update time of the memory item.

scope
String

The namespace that logically groups and isolates memories, such as a user ID.

content
String

The content of the memory.

kind
MemoryItemKind

The kind of the memory item.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to