ResponsesAssistantMessageItemParam Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Name | Description |
|---|---|
| ResponsesAssistantMessageItemParam() |
Initializes a new instance of ResponsesAssistantMessageItemParam for deserialization. |
| ResponsesAssistantMessageItemParam(BinaryData) |
Initializes a new instance of ResponsesAssistantMessageItemParam. |
| ResponsesAssistantMessageItemParam(ItemType, IDictionary<String,BinaryData>, ResponsesMessageRole, BinaryData) |
Initializes a new instance of ResponsesAssistantMessageItemParam. |
ResponsesAssistantMessageItemParam()
Initializes a new instance of ResponsesAssistantMessageItemParam for deserialization.
public ResponsesAssistantMessageItemParam();
Public Sub New ()
Applies to
ResponsesAssistantMessageItemParam(BinaryData)
Initializes a new instance of ResponsesAssistantMessageItemParam.
public ResponsesAssistantMessageItemParam(BinaryData content);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesAssistantMessageItemParam : BinaryData -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ResponsesAssistantMessageItemParam
Public Sub New (content As BinaryData)
Parameters
- content
- BinaryData
The content associated with the message.
Exceptions
content is null.
Applies to
ResponsesAssistantMessageItemParam(ItemType, IDictionary<String,BinaryData>, ResponsesMessageRole, BinaryData)
Initializes a new instance of ResponsesAssistantMessageItemParam.
public ResponsesAssistantMessageItemParam(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.ResponsesAssistantMessageItemParam : 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.ResponsesAssistantMessageItemParam
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.