Share via


CreatedBy Constructors

Definition

Overloads

Name Description
CreatedBy()

Initializes a new instance of CreatedBy.

CreatedBy(AgentId, String, IDictionary<String,BinaryData>)

Initializes a new instance of CreatedBy.

CreatedBy()

Source:
CreatedBy.cs

Initializes a new instance of CreatedBy.

public CreatedBy();
Public Sub New ()

Applies to

CreatedBy(AgentId, String, IDictionary<String,BinaryData>)

Source:
CreatedBy.cs

Initializes a new instance of CreatedBy.

public CreatedBy(Azure.AI.AgentServer.Contracts.Generated.Agents.AgentId agent, string responseId, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.CreatedBy : Azure.AI.AgentServer.Contracts.Generated.Agents.AgentId * string * System.Collections.Generic.IDictionary<string, BinaryData> -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.CreatedBy
Public Sub New (agent As AgentId, responseId As String, serializedAdditionalRawData As IDictionary(Of String, BinaryData))

Parameters

agent
AgentId

The agent that created the item.

responseId
String

The response on which the item is created.

serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

Applies to