ImageGenToolCallItemParam 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 |
|---|---|
| ImageGenToolCallItemParam() |
Initializes a new instance of ImageGenToolCallItemParam for deserialization. |
| ImageGenToolCallItemParam(String) |
Initializes a new instance of ImageGenToolCallItemParam. |
| ImageGenToolCallItemParam(ItemType, IDictionary<String,BinaryData>, String) |
Initializes a new instance of ImageGenToolCallItemParam. |
ImageGenToolCallItemParam()
- Source:
- ImageGenToolCallItemParam.cs
Initializes a new instance of ImageGenToolCallItemParam for deserialization.
public ImageGenToolCallItemParam();
Public Sub New ()
Applies to
ImageGenToolCallItemParam(String)
- Source:
- ImageGenToolCallItemParam.cs
Initializes a new instance of ImageGenToolCallItemParam.
public ImageGenToolCallItemParam(string result);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ImageGenToolCallItemParam : string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ImageGenToolCallItemParam
Public Sub New (result As String)
Parameters
- result
- String
The generated image encoded in base64.
Applies to
ImageGenToolCallItemParam(ItemType, IDictionary<String,BinaryData>, String)
- Source:
- ImageGenToolCallItemParam.cs
Initializes a new instance of ImageGenToolCallItemParam.
public ImageGenToolCallItemParam(Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType type, System.Collections.Generic.IDictionary<string,BinaryData> serializedAdditionalRawData, string result);
new Azure.AI.AgentServer.Contracts.Generated.OpenAI.ImageGenToolCallItemParam : Azure.AI.AgentServer.Contracts.Generated.OpenAI.ItemType * System.Collections.Generic.IDictionary<string, BinaryData> * string -> Azure.AI.AgentServer.Contracts.Generated.OpenAI.ImageGenToolCallItemParam
Public Sub New (type As ItemType, serializedAdditionalRawData As IDictionary(Of String, BinaryData), result As String)
Parameters
- type
- ItemType
- serializedAdditionalRawData
- IDictionary<String,BinaryData>
Keeps track of any properties unknown to the library.
- result
- String
The generated image encoded in base64.