Share via


ResponsesDeveloperMessageItemParam Constructors

Definition

Overloads

ResponsesDeveloperMessageItemParam()

Source:
ResponsesDeveloperMessageItemParam.cs

Initializes a new instance of ResponsesDeveloperMessageItemParam for deserialization.

public ResponsesDeveloperMessageItemParam();
Public Sub New ()

Applies to

ResponsesDeveloperMessageItemParam(BinaryData)

Source:
ResponsesDeveloperMessageItemParam.cs

Initializes a new instance of ResponsesDeveloperMessageItemParam.

public ResponsesDeveloperMessageItemParam(BinaryData content);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesDeveloperMessageItemParam : BinaryData -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesDeveloperMessageItemParam
Public Sub New (content As BinaryData)

Parameters

content
BinaryData

The content associated with the message.

Exceptions

content is null.

Applies to

ResponsesDeveloperMessageItemParam(ItemType, IDictionary<String,BinaryData>, ResponsesMessageRole, BinaryData)

Source:
ResponsesDeveloperMessageItemParam.cs

Initializes a new instance of ResponsesDeveloperMessageItemParam.

public ResponsesDeveloperMessageItemParam(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesMessageRole role, BinaryData content);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesDeveloperMessageItemParam : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType * System.Collections.Generic.IDictionary<string, BinaryData> * Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesMessageRole * BinaryData -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesDeveloperMessageItemParam
Public Sub New (type As ItemType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), role As ResponsesMessageRole, content As BinaryData)

Parameters

type
ItemType
serializedAdditionalRawData
IDictionary<String,BinaryData>

Keeps track of any properties unknown to the library.

role
ResponsesMessageRole

The role associated with the message.

content
BinaryData

The content associated with the message.

Applies to