Class Model
Represents the JSON serialization of a model.
Inherited Members
Namespace: LaunchDarkly.Sdk.Server.Ai.DataModel
Assembly: LaunchDarkly.ServerSdk.Ai.dll
Syntax
public class Model
Constructors
View SourceModel()
Declaration
public Model()
Properties
| Edit this page View SourceCustom
The model's custom parameters. These are arbitrary and provided by the user.
Declaration
[JsonPropertyName("custom")]
public Dictionary<string, LdValue> Custom { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, LdValue> |
Name
The model's name.
Declaration
[JsonPropertyName("name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string |
Parameters
The model's parameters. These are provided by LaunchDarkly.
Declaration
[JsonPropertyName("parameters")]
public Dictionary<string, LdValue> Parameters { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, LdValue> |