diff --git a/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendAllBreakdowns.g.cs b/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendAllBreakdowns.g.cs new file mode 100644 index 00000000..b024c5d6 --- /dev/null +++ b/src/libs/Opik/Generated/Opik.AiSpendClient.GetSpendAllBreakdowns.g.cs @@ -0,0 +1,530 @@ + +#nullable enable + +namespace Opik +{ + public partial class AiSpendClient + { + + private static readonly global::Opik.AutoSDKServer[] s_GetSpendAllBreakdownsServers = new global::Opik.AutoSDKServer[] + { new global::Opik.AutoSDKServer( + id: "http-localhost-api", + name: "Local server", + url: "http://localhost:5173/api", + description: "Local server"), + new global::Opik.AutoSDKServer( + id: "https-www-comet-com-opik-api", + name: "Opik Cloud", + url: "https://www.comet.com/opik/api", + description: "Opik Cloud"), + }; + + + private static readonly global::Opik.EndPointSecurityRequirement s_GetSpendAllBreakdownsSecurityRequirement0 = + new global::Opik.EndPointSecurityRequirement + { + Authorizations = new global::Opik.EndPointAuthorizationRequirement[] + { new global::Opik.EndPointAuthorizationRequirement + { + Type = "Http", + SchemeId = "HttpBearer", + Location = "Header", + Name = "Bearer", + FriendlyName = "Bearer", + }, + }, + }; + private static readonly global::Opik.EndPointSecurityRequirement[] s_GetSpendAllBreakdownsSecurityRequirements = + new global::Opik.EndPointSecurityRequirement[] + { s_GetSpendAllBreakdownsSecurityRequirement0, + }; + partial void PrepareGetSpendAllBreakdownsArguments( + global::System.Net.Http.HttpClient httpClient, + global::Opik.SpendMetricRequest request); + partial void PrepareGetSpendAllBreakdownsRequest( + global::System.Net.Http.HttpClient httpClient, + global::System.Net.Http.HttpRequestMessage httpRequestMessage, + global::Opik.SpendMetricRequest request); + partial void ProcessGetSpendAllBreakdownsResponse( + global::System.Net.Http.HttpClient httpClient, + global::System.Net.Http.HttpResponseMessage httpResponseMessage); + + partial void ProcessGetSpendAllBreakdownsResponseContent( + global::System.Net.Http.HttpClient httpClient, + global::System.Net.Http.HttpResponseMessage httpResponseMessage, + ref string content); + + /// + /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request + ///
+ /// + /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. + /// The token to cancel the operation with + /// + public async global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync( + + global::Opik.SpendMetricRequest request, + global::Opik.AutoSDKRequestOptions? requestOptions = default, + global::System.Threading.CancellationToken cancellationToken = default) + { + var __response = await GetSpendAllBreakdownsAsResponseAsync( + + request: request, + requestOptions: requestOptions, + cancellationToken: cancellationToken + ).ConfigureAwait(false); + + return __response.Body; + } + /// + /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request + ///
+ /// + /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. + /// The token to cancel the operation with + /// + public async global::System.Threading.Tasks.Task> GetSpendAllBreakdownsAsResponseAsync( + + global::Opik.SpendMetricRequest request, + global::Opik.AutoSDKRequestOptions? requestOptions = default, + global::System.Threading.CancellationToken cancellationToken = default) + { + request = request ?? throw new global::System.ArgumentNullException(nameof(request)); + + PrepareArguments( + client: HttpClient); + PrepareGetSpendAllBreakdownsArguments( + httpClient: HttpClient, + request: request); + + + var __authorizations = global::Opik.EndPointSecurityResolver.ResolveAuthorizations( + availableAuthorizations: Authorizations, + securityRequirements: s_GetSpendAllBreakdownsSecurityRequirements, + operationName: "GetSpendAllBreakdownsAsync"); + + using var __timeoutCancellationTokenSource = global::Opik.AutoSDKRequestOptionsSupport.CreateTimeoutCancellationTokenSource( + clientOptions: Options, + requestOptions: requestOptions, + cancellationToken: cancellationToken); + var __effectiveCancellationToken = __timeoutCancellationTokenSource?.Token ?? cancellationToken; + var __effectiveReadResponseAsString = global::Opik.AutoSDKRequestOptionsSupport.GetReadResponseAsString( + clientOptions: Options, + requestOptions: requestOptions, + fallbackValue: ReadResponseAsString); + var __maxAttempts = global::Opik.AutoSDKRequestOptionsSupport.GetMaxAttempts( + clientOptions: Options, + requestOptions: requestOptions, + supportsRetry: true); + + global::System.Net.Http.HttpRequestMessage __CreateHttpRequest() + { + + var __pathBuilder = new global::Opik.PathBuilder( + path: "/v1/private/ai-spend/composition/breakdowns", + baseUri: ResolveBaseUri( + servers: s_GetSpendAllBreakdownsServers, + defaultBaseUrl: "http://localhost:5173/api")); + var __path = __pathBuilder.ToString(); + __path = global::Opik.AutoSDKRequestOptionsSupport.AppendQueryParameters( + path: __path, + clientParameters: Options.QueryParameters, + requestParameters: requestOptions?.QueryParameters); + var __httpRequest = new global::System.Net.Http.HttpRequestMessage( + method: global::System.Net.Http.HttpMethod.Post, + requestUri: new global::System.Uri(__path, global::System.UriKind.RelativeOrAbsolute)); +#if NET6_0_OR_GREATER + __httpRequest.Version = global::System.Net.HttpVersion.Version11; + __httpRequest.VersionPolicy = global::System.Net.Http.HttpVersionPolicy.RequestVersionOrHigher; +#endif + + foreach (var __authorization in __authorizations) + { + if (__authorization.Type == "Http" || + __authorization.Type == "OAuth2" || + __authorization.Type == "OpenIdConnect") + { + __httpRequest.Headers.Authorization = new global::System.Net.Http.Headers.AuthenticationHeaderValue( + scheme: __authorization.Name, + parameter: __authorization.Value); + } + else if (__authorization.Type == "ApiKey" && + __authorization.Location == "Header") + { + __httpRequest.Headers.Add(__authorization.Name, __authorization.Value); + } + } + var __httpRequestContentBody = request.ToJson(JsonSerializerContext); + var __httpRequestContent = new global::System.Net.Http.StringContent( + content: __httpRequestContentBody, + encoding: global::System.Text.Encoding.UTF8, + mediaType: "application/json"); + __httpRequest.Content = __httpRequestContent; + global::Opik.AutoSDKRequestOptionsSupport.ApplyHeaders( + request: __httpRequest, + clientHeaders: Options.Headers, + requestHeaders: requestOptions?.Headers); + + PrepareRequest( + client: HttpClient, + request: __httpRequest); + PrepareGetSpendAllBreakdownsRequest( + httpClient: HttpClient, + httpRequestMessage: __httpRequest, + request: request); + + return __httpRequest; + } + + global::System.Net.Http.HttpRequestMessage? __httpRequest = null; + global::System.Net.Http.HttpResponseMessage? __response = null; + var __attemptNumber = 0; + try + { + for (var __attempt = 1; __attempt <= __maxAttempts; __attempt++) + { + __attemptNumber = __attempt; + __httpRequest = __CreateHttpRequest(); + await global::Opik.AutoSDKRequestOptionsSupport.OnBeforeRequestAsync( + clientOptions: Options, + context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext( + operationId: "GetSpendAllBreakdowns", + methodName: "GetSpendAllBreakdownsAsync", + pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"", + httpMethod: "POST", + baseUri: BaseUri, + request: __httpRequest!, + response: null, + exception: null, + clientOptions: Options, + requestOptions: requestOptions, + attempt: __attempt, + maxAttempts: __maxAttempts, + willRetry: false, + retryDelay: null, + retryReason: global::System.String.Empty, + cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false); + try + { + __response = await HttpClient.SendAsync( + request: __httpRequest, + completionOption: global::System.Net.Http.HttpCompletionOption.ResponseContentRead, + cancellationToken: __effectiveCancellationToken).ConfigureAwait(false); + } + catch (global::System.Net.Http.HttpRequestException __exception) + { + var __retryDelay = global::Opik.AutoSDKRequestOptionsSupport.GetRetryDelay( + clientOptions: Options, + requestOptions: requestOptions, + response: null, + attempt: __attempt); + var __willRetry = __attempt < __maxAttempts && !__effectiveCancellationToken.IsCancellationRequested; + await global::Opik.AutoSDKRequestOptionsSupport.OnAfterErrorAsync( + clientOptions: Options, + context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext( + operationId: "GetSpendAllBreakdowns", + methodName: "GetSpendAllBreakdownsAsync", + pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"", + httpMethod: "POST", + baseUri: BaseUri, + request: __httpRequest!, + response: null, + exception: __exception, + clientOptions: Options, + requestOptions: requestOptions, + attempt: __attempt, + maxAttempts: __maxAttempts, + willRetry: __willRetry, + retryDelay: __willRetry ? __retryDelay : (global::System.TimeSpan?)null, + retryReason: "exception", + cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false); + if (!__willRetry) + { + throw; + } + + __httpRequest.Dispose(); + __httpRequest = null; + await global::Opik.AutoSDKRequestOptionsSupport.DelayBeforeRetryAsync( + retryDelay: __retryDelay, + cancellationToken: __effectiveCancellationToken).ConfigureAwait(false); + continue; + } + + if (__response != null && + __attempt < __maxAttempts && + global::Opik.AutoSDKRequestOptionsSupport.ShouldRetryStatusCode(__response.StatusCode)) + { + var __retryDelay = global::Opik.AutoSDKRequestOptionsSupport.GetRetryDelay( + clientOptions: Options, + requestOptions: requestOptions, + response: __response, + attempt: __attempt); + await global::Opik.AutoSDKRequestOptionsSupport.OnAfterErrorAsync( + clientOptions: Options, + context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext( + operationId: "GetSpendAllBreakdowns", + methodName: "GetSpendAllBreakdownsAsync", + pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"", + httpMethod: "POST", + baseUri: BaseUri, + request: __httpRequest!, + response: __response, + exception: null, + clientOptions: Options, + requestOptions: requestOptions, + attempt: __attempt, + maxAttempts: __maxAttempts, + willRetry: true, + retryDelay: __retryDelay, + retryReason: "status:" + ((int)__response.StatusCode).ToString(global::System.Globalization.CultureInfo.InvariantCulture), + cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false); + __response.Dispose(); + __response = null; + __httpRequest.Dispose(); + __httpRequest = null; + await global::Opik.AutoSDKRequestOptionsSupport.DelayBeforeRetryAsync( + retryDelay: __retryDelay, + cancellationToken: __effectiveCancellationToken).ConfigureAwait(false); + continue; + } + + break; + } + + if (__response == null) + { + throw new global::System.InvalidOperationException("No response received."); + } + + using (__response) + { + + ProcessResponse( + client: HttpClient, + response: __response); + ProcessGetSpendAllBreakdownsResponse( + httpClient: HttpClient, + httpResponseMessage: __response); + if (__response.IsSuccessStatusCode) + { + await global::Opik.AutoSDKRequestOptionsSupport.OnAfterSuccessAsync( + clientOptions: Options, + context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext( + operationId: "GetSpendAllBreakdowns", + methodName: "GetSpendAllBreakdownsAsync", + pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"", + httpMethod: "POST", + baseUri: BaseUri, + request: __httpRequest!, + response: __response, + exception: null, + clientOptions: Options, + requestOptions: requestOptions, + attempt: __attemptNumber, + maxAttempts: __maxAttempts, + willRetry: false, + retryDelay: null, + retryReason: global::System.String.Empty, + cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false); + } + else + { + await global::Opik.AutoSDKRequestOptionsSupport.OnAfterErrorAsync( + clientOptions: Options, + context: global::Opik.AutoSDKRequestOptionsSupport.CreateHookContext( + operationId: "GetSpendAllBreakdowns", + methodName: "GetSpendAllBreakdownsAsync", + pathTemplate: "\"/v1/private/ai-spend/composition/breakdowns\"", + httpMethod: "POST", + baseUri: BaseUri, + request: __httpRequest!, + response: __response, + exception: null, + clientOptions: Options, + requestOptions: requestOptions, + attempt: __attemptNumber, + maxAttempts: __maxAttempts, + willRetry: false, + retryDelay: null, + retryReason: global::System.String.Empty, + cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false); + } + // Bad Request + if ((int)__response.StatusCode == 400) + { + string? __content_400 = null; + global::System.Exception? __exception_400 = null; + global::Opik.ErrorMessage? __value_400 = null; + try + { + if (__effectiveReadResponseAsString) + { + __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false); + __value_400 = global::Opik.ErrorMessage.FromJson(__content_400, JsonSerializerContext); + } + else + { + __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false); + + __value_400 = global::Opik.ErrorMessage.FromJson(__content_400, JsonSerializerContext); + } + } + catch (global::System.Exception __ex) + { + __exception_400 = __ex; + } + + + throw global::Opik.ApiException.Create( + statusCode: __response.StatusCode, + message: __content_400 ?? __response.ReasonPhrase ?? string.Empty, + innerException: __exception_400, + responseBody: __content_400, + responseObject: __value_400, + responseHeaders: global::System.Linq.Enumerable.ToDictionary( + __response.Headers, + h => h.Key, + h => h.Value)); + } + + if (__effectiveReadResponseAsString) + { + var __content = await __response.Content.ReadAsStringAsync( + #if NET5_0_OR_GREATER + __effectiveCancellationToken + #endif + ).ConfigureAwait(false); + + ProcessResponseContent( + client: HttpClient, + response: __response, + content: ref __content); + ProcessGetSpendAllBreakdownsResponseContent( + httpClient: HttpClient, + httpResponseMessage: __response, + content: ref __content); + + try + { + __response.EnsureSuccessStatusCode(); + + var __value = global::Opik.SpendBreakdownsResponse.FromJson(__content, JsonSerializerContext) ?? + throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); + return new global::Opik.AutoSDKHttpResponse( + statusCode: __response.StatusCode, + headers: global::Opik.AutoSDKHttpResponse.CreateHeaders(__response), + requestUri: __response.RequestMessage?.RequestUri, + body: __value); + } + catch (global::System.Exception __ex) + { + throw global::Opik.ApiException.Create( + statusCode: __response.StatusCode, + message: __content ?? __response.ReasonPhrase ?? string.Empty, + innerException: __ex, + responseBody: __content, + responseHeaders: global::System.Linq.Enumerable.ToDictionary( + __response.Headers, + h => h.Key, + h => h.Value)); + } + } + else + { + try + { + __response.EnsureSuccessStatusCode(); + using var __content = await __response.Content.ReadAsStreamAsync( + #if NET5_0_OR_GREATER + __effectiveCancellationToken + #endif + ).ConfigureAwait(false); + + var __value = await global::Opik.SpendBreakdownsResponse.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ?? + throw new global::System.InvalidOperationException("Response deserialization failed."); + return new global::Opik.AutoSDKHttpResponse( + statusCode: __response.StatusCode, + headers: global::Opik.AutoSDKHttpResponse.CreateHeaders(__response), + requestUri: __response.RequestMessage?.RequestUri, + body: __value); + } + catch (global::System.Exception __ex) + { + string? __content = null; + try + { + __content = await __response.Content.ReadAsStringAsync( + #if NET5_0_OR_GREATER + __effectiveCancellationToken + #endif + ).ConfigureAwait(false); + } + catch (global::System.Exception) + { + } + + throw global::Opik.ApiException.Create( + statusCode: __response.StatusCode, + message: __content ?? __response.ReasonPhrase ?? string.Empty, + innerException: __ex, + responseBody: __content, + responseHeaders: global::System.Linq.Enumerable.ToDictionary( + __response.Headers, + h => h.Key, + h => h.Value)); + } + } + + } + } + finally + { + __httpRequest?.Dispose(); + } + } + /// + /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request + ///
+ /// + /// + /// + /// + /// + /// + /// + /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. + /// The token to cancel the operation with + /// + public async global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync( + global::System.DateTime intervalStart, + global::System.DateTime intervalEnd, + global::System.Guid? projectId = default, + string? projectName = default, + string? userId = default, + bool? startBeforeEnd = default, + bool? projectProvided = default, + global::Opik.AutoSDKRequestOptions? requestOptions = default, + global::System.Threading.CancellationToken cancellationToken = default) + { + var __request = new global::Opik.SpendMetricRequest + { + ProjectId = projectId, + ProjectName = projectName, + IntervalStart = intervalStart, + IntervalEnd = intervalEnd, + UserId = userId, + StartBeforeEnd = startBeforeEnd, + ProjectProvided = projectProvided, + }; + + return await GetSpendAllBreakdownsAsync( + request: __request, + requestOptions: requestOptions, + cancellationToken: cancellationToken).ConfigureAwait(false); + } + } +} \ No newline at end of file diff --git a/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendAllBreakdowns.g.cs b/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendAllBreakdowns.g.cs new file mode 100644 index 00000000..8048034b --- /dev/null +++ b/src/libs/Opik/Generated/Opik.IAiSpendClient.GetSpendAllBreakdowns.g.cs @@ -0,0 +1,58 @@ +#nullable enable + +namespace Opik +{ + public partial interface IAiSpendClient + { + /// + /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request + ///
+ /// + /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. + /// The token to cancel the operation with + /// + global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync( + + global::Opik.SpendMetricRequest request, + global::Opik.AutoSDKRequestOptions? requestOptions = default, + global::System.Threading.CancellationToken cancellationToken = default); + /// + /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request + ///
+ /// + /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. + /// The token to cancel the operation with + /// + global::System.Threading.Tasks.Task> GetSpendAllBreakdownsAsResponseAsync( + + global::Opik.SpendMetricRequest request, + global::Opik.AutoSDKRequestOptions? requestOptions = default, + global::System.Threading.CancellationToken cancellationToken = default); + /// + /// Get all spend lane breakdowns
+ /// Get the per-item breakdown for every composition lane in one request + ///
+ /// + /// + /// + /// + /// + /// + /// + /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. + /// The token to cancel the operation with + /// + global::System.Threading.Tasks.Task GetSpendAllBreakdownsAsync( + global::System.DateTime intervalStart, + global::System.DateTime intervalEnd, + global::System.Guid? projectId = default, + string? projectName = default, + string? userId = default, + bool? startBeforeEnd = default, + bool? projectProvided = default, + global::Opik.AutoSDKRequestOptions? requestOptions = default, + global::System.Threading.CancellationToken cancellationToken = default); + } +} \ No newline at end of file diff --git a/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs b/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs index 09bbf3ef..47199683 100644 --- a/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs +++ b/src/libs/Opik/Generated/Opik.IProjectsClient.RetrieveProject.g.cs @@ -35,11 +35,13 @@ public partial interface IProjectsClient /// Retrieve project /// /// + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// global::System.Threading.Tasks.Task RetrieveProjectAsync( string name, + bool? includeStats = default, global::Opik.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default); } diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs index 164a7c19..8fc791c2 100644 --- a/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs +++ b/src/libs/Opik/Generated/Opik.JsonSerializerContext.g.cs @@ -1040,19 +1040,21 @@ namespace Opik [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ReportedIssueSeverity), TypeInfoPropertyName = "ReportedIssueSeverity2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueUpdate))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AgentInsightsIssueUpdateStatus), TypeInfoPropertyName = "AgentInsightsIssueUpdateStatus2")] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.HarnessEntry))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Lane))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Item))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ModelTiers))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendBreakdownResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendBreakdownsResponse))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendMetricRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(bool))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.HarnessEntry))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Lane))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Side))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendCompositionResponse))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendMetricRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Item))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendBreakdownResponse))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.Result))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(double))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.SpendSummaryResponse))] @@ -1457,8 +1459,6 @@ namespace Opik [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.AvgValueStatPublicVariant2))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CountValueStatPublic))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CountValueStatPublicVariant2))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublic))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublicVariant2))] internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -2416,6 +2416,8 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter), })] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublic))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValueStatPublicVariant2))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.PercentageValuesPublic))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicType), TypeInfoPropertyName = "ProjectStatItemObjectPublicType2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.ProjectStatItemObjectPublicDiscriminator))] @@ -2914,8 +2916,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.RevokeRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.TokenRequest))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromCsvRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequest))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequestFormat), TypeInfoPropertyName = "CreateDatasetItemsFromJsonRequestFormat2")] internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext { } @@ -3873,6 +3873,8 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex typeof(global::Opik.JsonConverters.UnixTimestampJsonConverter), })] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequest))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.CreateDatasetItemsFromJsonRequestFormat), TypeInfoPropertyName = "CreateDatasetItemsFromJsonRequestFormat2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesStatus), TypeInfoPropertyName = "FindAgentInsightsIssuesStatus2")] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::Opik.FindAgentInsightsIssuesSeverity), TypeInfoPropertyName = "FindAgentInsightsIssuesSeverity2")] @@ -3919,9 +3921,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] + [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] - [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.List))] diff --git a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs index 03033c9c..c149c1fe 100644 --- a/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs +++ b/src/libs/Opik/Generated/Opik.JsonSerializerContextTypes.g.cs @@ -348,3799 +348,3807 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::Opik.HarnessEntry? Type80 { get; set; } + public global::Opik.Item? Type80 { get; set; } /// /// /// - public global::Opik.Lane? Type81 { get; set; } + public global::System.Collections.Generic.IList? Type81 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type82 { get; set; } + public global::Opik.ModelTiers? Type82 { get; set; } /// /// /// - public global::Opik.ModelTiers? Type83 { get; set; } + public global::Opik.SpendBreakdownResponse? Type83 { get; set; } /// /// /// - public bool? Type84 { get; set; } + public global::System.Collections.Generic.IList? Type84 { get; set; } /// /// /// - public global::Opik.Side? Type85 { get; set; } + public global::Opik.SpendBreakdownsResponse? Type85 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type86 { get; set; } + public global::System.Collections.Generic.IList? Type86 { get; set; } /// /// /// - public global::Opik.SpendCompositionResponse? Type87 { get; set; } + public global::Opik.SpendMetricRequest? Type87 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type88 { get; set; } + public bool? Type88 { get; set; } /// /// /// - public global::Opik.SpendMetricRequest? Type89 { get; set; } + public global::Opik.HarnessEntry? Type89 { get; set; } /// /// /// - public global::Opik.Item? Type90 { get; set; } + public global::Opik.Lane? Type90 { get; set; } /// /// /// - public global::Opik.SpendBreakdownResponse? Type91 { get; set; } + public global::Opik.Side? Type91 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type92 { get; set; } + public global::System.Collections.Generic.IList? Type92 { get; set; } /// /// /// - public global::Opik.Result? Type93 { get; set; } + public global::Opik.SpendCompositionResponse? Type93 { get; set; } /// /// /// - public double? Type94 { get; set; } + public global::System.Collections.Generic.IList? Type94 { get; set; } /// /// /// - public global::Opik.SpendSummaryResponse? Type95 { get; set; } + public global::Opik.Result? Type95 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type96 { get; set; } + public double? Type96 { get; set; } /// /// /// - public global::Opik.SpendUserPage? Type97 { get; set; } + public global::Opik.SpendSummaryResponse? Type97 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type98 { get; set; } + public global::System.Collections.Generic.IList? Type98 { get; set; } /// /// /// - public global::Opik.SpendUserRow? Type99 { get; set; } + public global::Opik.SpendUserPage? Type99 { get; set; } /// /// /// - public global::Opik.Alert? Type100 { get; set; } + public global::System.Collections.Generic.IList? Type100 { get; set; } /// /// /// - public global::Opik.AlertAlertType? Type101 { get; set; } + public global::Opik.SpendUserRow? Type101 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type102 { get; set; } + public global::Opik.Alert? Type102 { get; set; } /// /// /// - public global::Opik.Webhook? Type103 { get; set; } + public global::Opik.AlertAlertType? Type103 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type104 { get; set; } + public global::System.Collections.Generic.Dictionary? Type104 { get; set; } /// /// /// - public global::Opik.AlertTrigger? Type105 { get; set; } + public global::Opik.Webhook? Type105 { get; set; } /// /// /// - public global::Opik.AlertTriggerEventType? Type106 { get; set; } + public global::System.Collections.Generic.IList? Type106 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type107 { get; set; } + public global::Opik.AlertTrigger? Type107 { get; set; } /// /// /// - public global::Opik.AlertTriggerConfig? Type108 { get; set; } + public global::Opik.AlertTriggerEventType? Type108 { get; set; } /// /// /// - public global::Opik.AlertTriggerConfigType? Type109 { get; set; } + public global::System.Collections.Generic.IList? Type109 { get; set; } /// /// /// - public global::Opik.AlertTriggerConfigWrite? Type110 { get; set; } + public global::Opik.AlertTriggerConfig? Type110 { get; set; } /// /// /// - public global::Opik.AlertTriggerConfigWriteType? Type111 { get; set; } + public global::Opik.AlertTriggerConfigType? Type111 { get; set; } /// /// /// - public global::Opik.AlertTriggerWrite? Type112 { get; set; } + public global::Opik.AlertTriggerConfigWrite? Type112 { get; set; } /// /// /// - public global::Opik.AlertTriggerWriteEventType? Type113 { get; set; } + public global::Opik.AlertTriggerConfigWriteType? Type113 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type114 { get; set; } + public global::Opik.AlertTriggerWrite? Type114 { get; set; } /// /// /// - public global::Opik.AlertWrite? Type115 { get; set; } + public global::Opik.AlertTriggerWriteEventType? Type115 { get; set; } /// /// /// - public global::Opik.AlertWriteAlertType? Type116 { get; set; } + public global::System.Collections.Generic.IList? Type116 { get; set; } /// /// /// - public global::Opik.WebhookWrite? Type117 { get; set; } + public global::Opik.AlertWrite? Type117 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type118 { get; set; } + public global::Opik.AlertWriteAlertType? Type118 { get; set; } /// /// /// - public global::Opik.BatchDelete? Type119 { get; set; } + public global::Opik.WebhookWrite? Type119 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type120 { get; set; } + public global::System.Collections.Generic.IList? Type120 { get; set; } /// /// /// - public global::Opik.AlertPagePublic? Type121 { get; set; } + public global::Opik.BatchDelete? Type121 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type122 { get; set; } + public global::System.Collections.Generic.IList? Type122 { get; set; } /// /// /// - public global::Opik.AlertPublic? Type123 { get; set; } + public global::Opik.AlertPagePublic? Type123 { get; set; } /// /// /// - public global::Opik.AlertTriggerConfigPublic? Type124 { get; set; } + public global::System.Collections.Generic.IList? Type124 { get; set; } /// /// /// - public global::Opik.AlertTriggerConfigPublicType? Type125 { get; set; } + public global::Opik.AlertPublic? Type125 { get; set; } /// /// /// - public global::Opik.AlertTriggerPublic? Type126 { get; set; } + public global::Opik.AlertTriggerConfigPublic? Type126 { get; set; } /// /// /// - public global::Opik.AlertTriggerPublicEventType? Type127 { get; set; } + public global::Opik.AlertTriggerConfigPublicType? Type127 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type128 { get; set; } + public global::Opik.AlertTriggerPublic? Type128 { get; set; } /// /// /// - public global::Opik.AlertPublicAlertType? Type129 { get; set; } + public global::Opik.AlertTriggerPublicEventType? Type129 { get; set; } /// /// /// - public global::Opik.WebhookPublic? Type130 { get; set; } + public global::System.Collections.Generic.IList? Type130 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type131 { get; set; } + public global::Opik.AlertPublicAlertType? Type131 { get; set; } /// /// /// - public global::Opik.WebhookExamples? Type132 { get; set; } + public global::Opik.WebhookPublic? Type132 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type133 { get; set; } + public global::System.Collections.Generic.IList? Type133 { get; set; } /// /// /// - public object? Type134 { get; set; } + public global::Opik.WebhookExamples? Type134 { get; set; } /// /// /// - public global::Opik.WebhookTestResult? Type135 { get; set; } + public global::System.Collections.Generic.Dictionary? Type135 { get; set; } /// /// /// - public global::Opik.WebhookTestResultStatus? Type136 { get; set; } + public object? Type136 { get; set; } /// /// /// - public global::Opik.AnnotationQueueItemIds? Type137 { get; set; } + public global::Opik.WebhookTestResult? Type137 { get; set; } /// /// /// - public global::Opik.AnnotationQueue? Type138 { get; set; } + public global::Opik.WebhookTestResultStatus? Type138 { get; set; } /// /// /// - public global::Opik.AnnotationQueueScope? Type139 { get; set; } + public global::Opik.AnnotationQueueItemIds? Type139 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type140 { get; set; } + public global::Opik.AnnotationQueue? Type140 { get; set; } /// /// /// - public global::Opik.AnnotationQueueReviewer? Type141 { get; set; } + public global::Opik.AnnotationQueueScope? Type141 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type142 { get; set; } + public global::System.Collections.Generic.IList? Type142 { get; set; } /// /// /// - public global::Opik.FeedbackScoreAverage? Type143 { get; set; } + public global::Opik.AnnotationQueueReviewer? Type143 { get; set; } /// /// /// - public global::Opik.AnnotationQueueWrite? Type144 { get; set; } + public global::System.Collections.Generic.IList? Type144 { get; set; } /// /// /// - public global::Opik.AnnotationQueueWriteScope? Type145 { get; set; } + public global::Opik.FeedbackScoreAverage? Type145 { get; set; } /// /// /// - public global::Opik.AnnotationQueueBatch? Type146 { get; set; } + public global::Opik.AnnotationQueueWrite? Type146 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type147 { get; set; } + public global::Opik.AnnotationQueueWriteScope? Type147 { get; set; } /// /// /// - public global::Opik.AnnotationQueueBatchWrite? Type148 { get; set; } + public global::Opik.AnnotationQueueBatch? Type148 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type149 { get; set; } + public global::System.Collections.Generic.IList? Type149 { get; set; } /// /// /// - public global::Opik.AnnotationQueuePagePublic? Type150 { get; set; } + public global::Opik.AnnotationQueueBatchWrite? Type150 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type151 { get; set; } + public global::System.Collections.Generic.IList? Type151 { get; set; } /// /// /// - public global::Opik.AnnotationQueuePublic? Type152 { get; set; } + public global::Opik.AnnotationQueuePagePublic? Type152 { get; set; } /// /// /// - public global::Opik.AnnotationQueueReviewerPublic? Type153 { get; set; } + public global::System.Collections.Generic.IList? Type153 { get; set; } /// /// /// - public global::Opik.AnnotationQueuePublicScope? Type154 { get; set; } + public global::Opik.AnnotationQueuePublic? Type154 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type155 { get; set; } + public global::Opik.AnnotationQueueReviewerPublic? Type155 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type156 { get; set; } + public global::Opik.AnnotationQueuePublicScope? Type156 { get; set; } /// /// /// - public global::Opik.FeedbackScoreAveragePublic? Type157 { get; set; } + public global::System.Collections.Generic.IList? Type157 { get; set; } /// /// /// - public global::Opik.ItemLockInfo? Type158 { get; set; } + public global::System.Collections.Generic.IList? Type158 { get; set; } /// /// /// - public global::Opik.LocksResponse? Type159 { get; set; } + public global::Opik.FeedbackScoreAveragePublic? Type159 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type160 { get; set; } + public global::Opik.ItemLockInfo? Type160 { get; set; } /// /// /// - public global::Opik.LockResponse? Type161 { get; set; } + public global::Opik.LocksResponse? Type161 { get; set; } /// /// /// - public global::Opik.AnnotationQueueUpdate? Type162 { get; set; } + public global::System.Collections.Generic.Dictionary? Type162 { get; set; } /// /// /// - public global::Opik.AssertionResultBatch? Type163 { get; set; } + public global::Opik.LockResponse? Type163 { get; set; } /// /// /// - public global::Opik.AssertionResultBatchEntityType? Type164 { get; set; } + public global::Opik.AnnotationQueueUpdate? Type164 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type165 { get; set; } + public global::Opik.AssertionResultBatch? Type165 { get; set; } /// /// /// - public global::Opik.AssertionResultBatchItem? Type166 { get; set; } + public global::Opik.AssertionResultBatchEntityType? Type166 { get; set; } /// /// /// - public global::Opik.AssertionResultBatchItemStatus? Type167 { get; set; } + public global::System.Collections.Generic.IList? Type167 { get; set; } /// /// /// - public global::Opik.AssertionResultBatchItemSource? Type168 { get; set; } + public global::Opik.AssertionResultBatchItem? Type168 { get; set; } /// /// /// - public global::Opik.Attachment? Type169 { get; set; } + public global::Opik.AssertionResultBatchItemStatus? Type169 { get; set; } /// /// /// - public global::Opik.AttachmentPage? Type170 { get; set; } + public global::Opik.AssertionResultBatchItemSource? Type170 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type171 { get; set; } + public global::Opik.Attachment? Type171 { get; set; } /// /// /// - public global::Opik.CompleteMultipartUploadRequest? Type172 { get; set; } + public global::Opik.AttachmentPage? Type172 { get; set; } /// /// /// - public global::Opik.CompleteMultipartUploadRequestEntityType? Type173 { get; set; } + public global::System.Collections.Generic.IList? Type173 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type174 { get; set; } + public global::Opik.CompleteMultipartUploadRequest? Type174 { get; set; } /// /// /// - public global::Opik.MultipartUploadPart? Type175 { get; set; } + public global::Opik.CompleteMultipartUploadRequestEntityType? Type175 { get; set; } /// /// /// - public global::Opik.DeleteAttachmentsRequest? Type176 { get; set; } + public global::System.Collections.Generic.IList? Type176 { get; set; } /// /// /// - public global::Opik.DeleteAttachmentsRequestEntityType? Type177 { get; set; } + public global::Opik.MultipartUploadPart? Type177 { get; set; } /// /// /// - public global::Opik.StartMultipartUploadResponse? Type178 { get; set; } + public global::Opik.DeleteAttachmentsRequest? Type178 { get; set; } /// /// /// - public global::Opik.StartMultipartUploadRequest? Type179 { get; set; } + public global::Opik.DeleteAttachmentsRequestEntityType? Type179 { get; set; } /// /// /// - public global::Opik.StartMultipartUploadRequestEntityType? Type180 { get; set; } + public global::Opik.StartMultipartUploadResponse? Type180 { get; set; } /// /// /// - public global::Opik.AuthDetailsHolder? Type181 { get; set; } + public global::Opik.StartMultipartUploadRequest? Type181 { get; set; } /// /// /// - public global::Opik.WorkspaceNameHolder? Type182 { get; set; } + public global::Opik.StartMultipartUploadRequestEntityType? Type182 { get; set; } /// /// /// - public global::Opik.AudioUrl? Type183 { get; set; } + public global::Opik.AuthDetailsHolder? Type183 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluator? Type184 { get; set; } + public global::Opik.WorkspaceNameHolder? Type184 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type185 { get; set; } + public global::Opik.AudioUrl? Type185 { get; set; } /// /// /// - public global::Opik.ProjectReference? Type186 { get; set; } + public global::Opik.AutomationRuleEvaluator? Type186 { get; set; } /// /// /// - public float? Type187 { get; set; } + public global::System.Collections.Generic.IList? Type187 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorType? Type188 { get; set; } + public global::Opik.ProjectReference? Type188 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorAction? Type189 { get; set; } + public float? Type189 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorDiscriminator? Type190 { get; set; } + public global::Opik.AutomationRuleEvaluatorType? Type190 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type191 { get; set; } + public global::Opik.AutomationRuleEvaluatorAction? Type191 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type192 { get; set; } + public global::Opik.AutomationRuleEvaluatorDiscriminator? Type192 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type193 { get; set; } + public global::Opik.AutomationRuleEvaluatorDiscriminatorType? Type193 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type194 { get; set; } + public global::Opik.AutomationRuleEvaluatorLlmAsJudge? Type194 { get; set; } /// /// /// - public global::Opik.TraceFilter? Type195 { get; set; } + public global::Opik.AutomationRuleEvaluatorLlmAsJudgeVariant2? Type195 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeCode? Type196 { get; set; } + public global::System.Collections.Generic.IList? Type196 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type197 { get; set; } + public global::Opik.TraceFilter? Type197 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type198 { get; set; } + public global::Opik.LlmAsJudgeCode? Type198 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type199 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudge? Type199 { get; set; } /// /// /// - public global::Opik.SpanFilter? Type200 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeVariant2? Type200 { get; set; } /// /// /// - public global::Opik.SpanLlmAsJudgeCode? Type201 { get; set; } + public global::System.Collections.Generic.IList? Type201 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type202 { get; set; } + public global::Opik.SpanFilter? Type202 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type203 { get; set; } + public global::Opik.SpanLlmAsJudgeCode? Type203 { get; set; } /// /// /// - public global::Opik.SpanUserDefinedMetricPythonCode? Type204 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPython? Type204 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type205 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonVariant2? Type205 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type206 { get; set; } + public global::Opik.SpanUserDefinedMetricPythonCode? Type206 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type207 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudge? Type207 { get; set; } /// /// /// - public global::Opik.TraceThreadFilter? Type208 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeVariant2? Type208 { get; set; } /// /// /// - public global::Opik.TraceThreadLlmAsJudgeCode? Type209 { get; set; } + public global::System.Collections.Generic.IList? Type209 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type210 { get; set; } + public global::Opik.TraceThreadFilter? Type210 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type211 { get; set; } + public global::Opik.TraceThreadLlmAsJudgeCode? Type211 { get; set; } /// /// /// - public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type212 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPython? Type212 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type213 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonVariant2? Type213 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type214 { get; set; } + public global::Opik.TraceThreadUserDefinedMetricPythonCode? Type214 { get; set; } /// /// /// - public global::Opik.UserDefinedMetricPythonCode? Type215 { get; set; } + public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPython? Type215 { get; set; } /// /// /// - public global::Opik.ImageUrl? Type216 { get; set; } + public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonVariant2? Type216 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeModelParameters? Type217 { get; set; } + public global::Opik.UserDefinedMetricPythonCode? Type217 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type218 { get; set; } + public global::Opik.ImageUrl? Type218 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessage? Type219 { get; set; } + public global::Opik.LlmAsJudgeModelParameters? Type219 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type220 { get; set; } + public global::System.Collections.Generic.IList? Type220 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeOutputSchema? Type221 { get; set; } + public global::Opik.LlmAsJudgeMessage? Type221 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessageRole? Type222 { get; set; } + public global::System.Collections.Generic.IList? Type222 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type223 { get; set; } + public global::Opik.LlmAsJudgeOutputSchema? Type223 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessageContent? Type224 { get; set; } + public global::Opik.LlmAsJudgeMessageRole? Type224 { get; set; } /// /// /// - public global::Opik.VideoUrl? Type225 { get; set; } + public global::System.Collections.Generic.IList? Type225 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeOutputSchemaType? Type226 { get; set; } + public global::Opik.LlmAsJudgeMessageContent? Type226 { get; set; } /// /// /// - public global::Opik.SpanFilterOperator? Type227 { get; set; } + public global::Opik.VideoUrl? Type227 { get; set; } /// /// /// - public global::Opik.TraceFilterOperator? Type228 { get; set; } + public global::Opik.LlmAsJudgeOutputSchemaType? Type228 { get; set; } /// /// /// - public global::Opik.TraceThreadFilterOperator? Type229 { get; set; } + public global::Opik.SpanFilterOperator? Type229 { get; set; } /// /// /// - public global::Opik.AudioUrlWrite? Type230 { get; set; } + public global::Opik.TraceFilterOperator? Type230 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type231 { get; set; } + public global::Opik.TraceThreadFilterOperator? Type231 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorWrite? Type232 { get; set; } + public global::Opik.AudioUrlWrite? Type232 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type233 { get; set; } + public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWrite? Type233 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type234 { get; set; } + public global::Opik.AutomationRuleEvaluatorWrite? Type234 { get; set; } /// /// /// - public global::Opik.TraceFilterWrite? Type235 { get; set; } + public global::Opik.AutomationRuleEvaluatorLlmAsJudgeWriteVariant2? Type235 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeCodeWrite? Type236 { get; set; } + public global::System.Collections.Generic.IList? Type236 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type237 { get; set; } + public global::Opik.TraceFilterWrite? Type237 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type238 { get; set; } + public global::Opik.LlmAsJudgeCodeWrite? Type238 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type239 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWrite? Type239 { get; set; } /// /// /// - public global::Opik.SpanFilterWrite? Type240 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgeWriteVariant2? Type240 { get; set; } /// /// /// - public global::Opik.SpanLlmAsJudgeCodeWrite? Type241 { get; set; } + public global::System.Collections.Generic.IList? Type241 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type242 { get; set; } + public global::Opik.SpanFilterWrite? Type242 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type243 { get; set; } + public global::Opik.SpanLlmAsJudgeCodeWrite? Type243 { get; set; } /// /// /// - public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type244 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWrite? Type244 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type245 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonWriteVariant2? Type245 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type246 { get; set; } + public global::Opik.SpanUserDefinedMetricPythonCodeWrite? Type246 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type247 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWrite? Type247 { get; set; } /// /// /// - public global::Opik.TraceThreadFilterWrite? Type248 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgeWriteVariant2? Type248 { get; set; } /// /// /// - public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type249 { get; set; } + public global::System.Collections.Generic.IList? Type249 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type250 { get; set; } + public global::Opik.TraceThreadFilterWrite? Type250 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type251 { get; set; } + public global::Opik.TraceThreadLlmAsJudgeCodeWrite? Type251 { get; set; } /// /// /// - public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type252 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWrite? Type252 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type253 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonWriteVariant2? Type253 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type254 { get; set; } + public global::Opik.TraceThreadUserDefinedMetricPythonCodeWrite? Type254 { get; set; } /// /// /// - public global::Opik.UserDefinedMetricPythonCodeWrite? Type255 { get; set; } + public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWrite? Type255 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorWriteType? Type256 { get; set; } + public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonWriteVariant2? Type256 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorWriteAction? Type257 { get; set; } + public global::Opik.UserDefinedMetricPythonCodeWrite? Type257 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type258 { get; set; } + public global::Opik.AutomationRuleEvaluatorWriteType? Type258 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type259 { get; set; } + public global::Opik.AutomationRuleEvaluatorWriteAction? Type259 { get; set; } /// /// /// - public global::Opik.ImageUrlWrite? Type260 { get; set; } + public global::Opik.AutomationRuleEvaluatorWriteDiscriminator? Type260 { get; set; } /// /// /// - public global::Opik.JsonNodeWrite? Type261 { get; set; } + public global::Opik.AutomationRuleEvaluatorWriteDiscriminatorType? Type261 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeModelParametersWrite? Type262 { get; set; } + public global::Opik.ImageUrlWrite? Type262 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type263 { get; set; } + public global::Opik.JsonNodeWrite? Type263 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessageWrite? Type264 { get; set; } + public global::Opik.LlmAsJudgeModelParametersWrite? Type264 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type265 { get; set; } + public global::System.Collections.Generic.IList? Type265 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeOutputSchemaWrite? Type266 { get; set; } + public global::Opik.LlmAsJudgeMessageWrite? Type266 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessageContentWrite? Type267 { get; set; } + public global::System.Collections.Generic.IList? Type267 { get; set; } /// /// /// - public global::Opik.VideoUrlWrite? Type268 { get; set; } + public global::Opik.LlmAsJudgeOutputSchemaWrite? Type268 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessageWriteRole? Type269 { get; set; } + public global::Opik.LlmAsJudgeMessageContentWrite? Type269 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type270 { get; set; } + public global::Opik.VideoUrlWrite? Type270 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type271 { get; set; } + public global::Opik.LlmAsJudgeMessageWriteRole? Type271 { get; set; } /// /// /// - public global::Opik.SpanFilterWriteOperator? Type272 { get; set; } + public global::System.Collections.Generic.IList? Type272 { get; set; } /// /// /// - public global::Opik.TraceFilterWriteOperator? Type273 { get; set; } + public global::Opik.LlmAsJudgeOutputSchemaWriteType? Type273 { get; set; } /// /// /// - public global::Opik.TraceThreadFilterWriteOperator? Type274 { get; set; } + public global::Opik.SpanFilterWriteOperator? Type274 { get; set; } /// /// /// - public global::Opik.AudioUrlPublic? Type275 { get; set; } + public global::Opik.TraceFilterWriteOperator? Type275 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type276 { get; set; } + public global::Opik.TraceThreadFilterWriteOperator? Type276 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorPublic? Type277 { get; set; } + public global::Opik.AudioUrlPublic? Type277 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type278 { get; set; } + public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublic? Type278 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type279 { get; set; } + public global::Opik.AutomationRuleEvaluatorPublic? Type279 { get; set; } /// /// /// - public global::Opik.TraceFilterPublic? Type280 { get; set; } + public global::Opik.AutomationRuleEvaluatorLlmAsJudgePublicVariant2? Type280 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeCodePublic? Type281 { get; set; } + public global::System.Collections.Generic.IList? Type281 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type282 { get; set; } + public global::Opik.TraceFilterPublic? Type282 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type283 { get; set; } + public global::Opik.LlmAsJudgeCodePublic? Type283 { get; set; } /// /// /// - public global::Opik.ProjectReferencePublic? Type284 { get; set; } + public global::Opik.AutomationRuleEvaluatorObjectObjectPublic? Type284 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type285 { get; set; } + public global::System.Collections.Generic.IList? Type285 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type286 { get; set; } + public global::Opik.ProjectReferencePublic? Type286 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type287 { get; set; } + public global::Opik.AutomationRuleEvaluatorObjectObjectPublicType? Type287 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type288 { get; set; } + public global::Opik.AutomationRuleEvaluatorObjectObjectPublicAction? Type288 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorPagePublic? Type289 { get; set; } + public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminator? Type289 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type290 { get; set; } + public global::Opik.AutomationRuleEvaluatorObjectObjectPublicDiscriminatorType? Type290 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type291 { get; set; } + public global::Opik.AutomationRuleEvaluatorPagePublic? Type291 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type292 { get; set; } + public global::System.Collections.Generic.IList? Type292 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type293 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublic? Type293 { get; set; } /// /// /// - public global::Opik.SpanFilterPublic? Type294 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanLlmAsJudgePublicVariant2? Type294 { get; set; } /// /// /// - public global::Opik.SpanLlmAsJudgeCodePublic? Type295 { get; set; } + public global::System.Collections.Generic.IList? Type295 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type296 { get; set; } + public global::Opik.SpanFilterPublic? Type296 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type297 { get; set; } + public global::Opik.SpanLlmAsJudgeCodePublic? Type297 { get; set; } /// /// /// - public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type298 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublic? Type298 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type299 { get; set; } + public global::Opik.AutomationRuleEvaluatorSpanUserDefinedMetricPythonPublicVariant2? Type299 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type300 { get; set; } + public global::Opik.SpanUserDefinedMetricPythonCodePublic? Type300 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type301 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublic? Type301 { get; set; } /// /// /// - public global::Opik.TraceThreadFilterPublic? Type302 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadLlmAsJudgePublicVariant2? Type302 { get; set; } /// /// /// - public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type303 { get; set; } + public global::System.Collections.Generic.IList? Type303 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type304 { get; set; } + public global::Opik.TraceThreadFilterPublic? Type304 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type305 { get; set; } + public global::Opik.TraceThreadLlmAsJudgeCodePublic? Type305 { get; set; } /// /// /// - public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type306 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublic? Type306 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type307 { get; set; } + public global::Opik.AutomationRuleEvaluatorTraceThreadUserDefinedMetricPythonPublicVariant2? Type307 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type308 { get; set; } + public global::Opik.TraceThreadUserDefinedMetricPythonCodePublic? Type308 { get; set; } /// /// /// - public global::Opik.UserDefinedMetricPythonCodePublic? Type309 { get; set; } + public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublic? Type309 { get; set; } /// /// /// - public global::Opik.ImageUrlPublic? Type310 { get; set; } + public global::Opik.AutomationRuleEvaluatorUserDefinedMetricPythonPublicVariant2? Type310 { get; set; } /// /// /// - public global::Opik.JsonNodePublic? Type311 { get; set; } + public global::Opik.UserDefinedMetricPythonCodePublic? Type311 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeModelParametersPublic? Type312 { get; set; } + public global::Opik.ImageUrlPublic? Type312 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type313 { get; set; } + public global::Opik.JsonNodePublic? Type313 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessagePublic? Type314 { get; set; } + public global::Opik.LlmAsJudgeModelParametersPublic? Type314 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type315 { get; set; } + public global::System.Collections.Generic.IList? Type315 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeOutputSchemaPublic? Type316 { get; set; } + public global::Opik.LlmAsJudgeMessagePublic? Type316 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessageContentPublic? Type317 { get; set; } + public global::System.Collections.Generic.IList? Type317 { get; set; } /// /// /// - public global::Opik.VideoUrlPublic? Type318 { get; set; } + public global::Opik.LlmAsJudgeOutputSchemaPublic? Type318 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeMessagePublicRole? Type319 { get; set; } + public global::Opik.LlmAsJudgeMessageContentPublic? Type319 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type320 { get; set; } + public global::Opik.VideoUrlPublic? Type320 { get; set; } /// /// /// - public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type321 { get; set; } + public global::Opik.LlmAsJudgeMessagePublicRole? Type321 { get; set; } /// /// /// - public global::Opik.SpanFilterPublicOperator? Type322 { get; set; } + public global::System.Collections.Generic.IList? Type322 { get; set; } /// /// /// - public global::Opik.TraceFilterPublicOperator? Type323 { get; set; } + public global::Opik.LlmAsJudgeOutputSchemaPublicType? Type323 { get; set; } /// /// /// - public global::Opik.TraceThreadFilterPublicOperator? Type324 { get; set; } + public global::Opik.SpanFilterPublicOperator? Type324 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorPublicType? Type325 { get; set; } + public global::Opik.TraceFilterPublicOperator? Type325 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorPublicAction? Type326 { get; set; } + public global::Opik.TraceThreadFilterPublicOperator? Type326 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type327 { get; set; } + public global::Opik.AutomationRuleEvaluatorPublicType? Type327 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type328 { get; set; } + public global::Opik.AutomationRuleEvaluatorPublicAction? Type328 { get; set; } /// /// /// - public global::Opik.LogItem? Type329 { get; set; } + public global::Opik.AutomationRuleEvaluatorPublicDiscriminator? Type329 { get; set; } /// /// /// - public global::Opik.LogItemLevel? Type330 { get; set; } + public global::Opik.AutomationRuleEvaluatorPublicDiscriminatorType? Type330 { get; set; } /// /// /// - public global::Opik.LogPage? Type331 { get; set; } + public global::Opik.LogItem? Type331 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type332 { get; set; } + public global::Opik.LogItemLevel? Type332 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdate? Type333 { get; set; } + public global::Opik.LogPage? Type333 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateType? Type334 { get; set; } + public global::System.Collections.Generic.IList? Type334 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateAction? Type335 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdate? Type335 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type336 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateType? Type336 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type337 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateAction? Type337 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type338 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateDiscriminator? Type338 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type339 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateDiscriminatorType? Type339 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type340 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudge? Type340 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type341 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateLlmAsJudgeVariant2? Type341 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type342 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudge? Type342 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type343 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateSpanLlmAsJudgeVariant2? Type343 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type344 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPython? Type344 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type345 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateSpanUserDefinedMetricPythonVariant2? Type345 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type346 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudge? Type346 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type347 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadLlmAsJudgeVariant2? Type347 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type348 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPython? Type348 { get; set; } /// /// /// - public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type349 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateTraceThreadUserDefinedMetricPythonVariant2? Type349 { get; set; } /// /// /// - public global::Opik.AssistantMessage? Type350 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPython? Type350 { get; set; } /// /// /// - public global::Opik.AssistantMessageRole? Type351 { get; set; } + public global::Opik.AutomationRuleEvaluatorUpdateUserDefinedMetricPythonVariant2? Type351 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type352 { get; set; } + public global::Opik.AssistantMessage? Type352 { get; set; } /// /// /// - public global::Opik.ToolCall? Type353 { get; set; } + public global::Opik.AssistantMessageRole? Type353 { get; set; } /// /// /// - public global::Opik.FunctionCall? Type354 { get; set; } + public global::System.Collections.Generic.IList? Type354 { get; set; } /// /// /// - public global::Opik.ChatCompletionChoice? Type355 { get; set; } + public global::Opik.ToolCall? Type355 { get; set; } /// /// /// - public global::Opik.Delta? Type356 { get; set; } + public global::Opik.FunctionCall? Type356 { get; set; } /// /// /// - public global::Opik.LogProbs? Type357 { get; set; } + public global::Opik.ChatCompletionChoice? Type357 { get; set; } /// /// /// - public global::Opik.ChatCompletionResponse? Type358 { get; set; } + public global::Opik.Delta? Type358 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type359 { get; set; } + public global::Opik.LogProbs? Type359 { get; set; } /// /// /// - public global::Opik.Usage? Type360 { get; set; } + public global::Opik.ChatCompletionResponse? Type360 { get; set; } /// /// /// - public global::Opik.CompletionTokensDetails? Type361 { get; set; } + public global::System.Collections.Generic.IList? Type361 { get; set; } /// /// /// - public global::Opik.LogProb? Type362 { get; set; } + public global::Opik.Usage? Type362 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type363 { get; set; } + public global::Opik.CompletionTokensDetails? Type363 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type364 { get; set; } + public global::Opik.LogProb? Type364 { get; set; } /// /// /// - public global::Opik.PromptTokensDetails? Type365 { get; set; } + public global::System.Collections.Generic.IList? Type365 { get; set; } /// /// /// - public global::Opik.ToolCallType? Type366 { get; set; } + public global::System.Collections.Generic.IList? Type366 { get; set; } /// /// /// - public global::Opik.ChatCompletionRequest? Type367 { get; set; } + public global::Opik.PromptTokensDetails? Type367 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type368 { get; set; } + public global::Opik.ToolCallType? Type368 { get; set; } /// /// /// - public global::Opik.Message? Type369 { get; set; } + public global::Opik.ChatCompletionRequest? Type369 { get; set; } /// /// /// - public global::Opik.StreamOptions? Type370 { get; set; } + public global::System.Collections.Generic.IList? Type370 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type371 { get; set; } + public global::Opik.Message? Type371 { get; set; } /// /// /// - public global::Opik.ResponseFormat? Type372 { get; set; } + public global::Opik.StreamOptions? Type372 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type373 { get; set; } + public global::System.Collections.Generic.Dictionary? Type373 { get; set; } /// /// /// - public global::Opik.Tool? Type374 { get; set; } + public global::Opik.ResponseFormat? Type374 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type375 { get; set; } + public global::System.Collections.Generic.IList? Type375 { get; set; } /// /// /// - public global::Opik.Function? Type376 { get; set; } + public global::Opik.Tool? Type376 { get; set; } /// /// /// - public global::Opik.JsonSchema? Type377 { get; set; } + public global::System.Collections.Generic.IList? Type377 { get; set; } /// /// /// - public global::Opik.ResponseFormatType? Type378 { get; set; } + public global::Opik.Function? Type378 { get; set; } /// /// /// - public global::Opik.ToolType? Type379 { get; set; } + public global::Opik.JsonSchema? Type379 { get; set; } /// /// /// - public global::Opik.DashboardPublic? Type380 { get; set; } + public global::Opik.ResponseFormatType? Type380 { get; set; } /// /// /// - public global::Opik.DashboardPublicType? Type381 { get; set; } + public global::Opik.ToolType? Type381 { get; set; } /// /// /// - public global::Opik.DashboardPublicScope? Type382 { get; set; } + public global::Opik.DashboardPublic? Type382 { get; set; } /// /// /// - public global::Opik.DashboardWrite? Type383 { get; set; } + public global::Opik.DashboardPublicType? Type383 { get; set; } /// /// /// - public global::Opik.DashboardWriteType? Type384 { get; set; } + public global::Opik.DashboardPublicScope? Type384 { get; set; } /// /// /// - public global::Opik.DashboardPagePublic? Type385 { get; set; } + public global::Opik.DashboardWrite? Type385 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type386 { get; set; } + public global::Opik.DashboardWriteType? Type386 { get; set; } /// /// /// - public global::Opik.DashboardUpdatePublic? Type387 { get; set; } + public global::Opik.DashboardPagePublic? Type387 { get; set; } /// /// /// - public global::Opik.DashboardUpdatePublicType? Type388 { get; set; } + public global::System.Collections.Generic.IList? Type388 { get; set; } /// /// /// - public global::Opik.DatasetVersionPublic? Type389 { get; set; } + public global::Opik.DashboardUpdatePublic? Type389 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type390 { get; set; } + public global::Opik.DashboardUpdatePublicType? Type390 { get; set; } /// /// /// - public global::Opik.EvaluatorItemPublic? Type391 { get; set; } + public global::Opik.DatasetVersionPublic? Type391 { get; set; } /// /// /// - public global::Opik.ExecutionPolicyPublic? Type392 { get; set; } + public global::System.Collections.Generic.IList? Type392 { get; set; } /// /// /// - public global::Opik.EvaluatorItemPublicType? Type393 { get; set; } + public global::Opik.EvaluatorItemPublic? Type393 { get; set; } /// /// /// - public global::Opik.DatasetItemChangesPublic? Type394 { get; set; } + public global::Opik.ExecutionPolicyPublic? Type394 { get; set; } /// /// /// - public global::Opik.DatasetItemBatchUpdate? Type395 { get; set; } + public global::Opik.EvaluatorItemPublicType? Type395 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type396 { get; set; } + public global::Opik.DatasetItemChangesPublic? Type396 { get; set; } /// /// /// - public global::Opik.DatasetItemFilter? Type397 { get; set; } + public global::Opik.DatasetItemBatchUpdate? Type397 { get; set; } /// /// /// - public global::Opik.DatasetItemUpdate? Type398 { get; set; } + public global::System.Collections.Generic.IList? Type398 { get; set; } /// /// /// - public global::Opik.DatasetItemFilterOperator? Type399 { get; set; } + public global::Opik.DatasetItemFilter? Type399 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type400 { get; set; } + public global::Opik.DatasetItemUpdate? Type400 { get; set; } /// /// /// - public global::Opik.EvaluatorItem? Type401 { get; set; } + public global::Opik.DatasetItemFilterOperator? Type401 { get; set; } /// /// /// - public global::Opik.ExecutionPolicy? Type402 { get; set; } + public global::System.Collections.Generic.IList? Type402 { get; set; } /// /// /// - public global::Opik.EvaluatorItemType? Type403 { get; set; } + public global::Opik.EvaluatorItem? Type403 { get; set; } /// /// /// - public global::Opik.Dataset? Type404 { get; set; } + public global::Opik.ExecutionPolicy? Type404 { get; set; } /// /// /// - public global::Opik.DatasetType? Type405 { get; set; } + public global::Opik.EvaluatorItemType? Type405 { get; set; } /// /// /// - public global::Opik.DatasetVisibility? Type406 { get; set; } + public global::Opik.Dataset? Type406 { get; set; } /// /// /// - public global::Opik.DatasetStatus? Type407 { get; set; } + public global::Opik.DatasetType? Type407 { get; set; } /// /// /// - public global::Opik.DatasetVersionSummary? Type408 { get; set; } + public global::Opik.DatasetVisibility? Type408 { get; set; } /// /// /// - public global::Opik.DatasetWrite? Type409 { get; set; } + public global::Opik.DatasetStatus? Type409 { get; set; } /// /// /// - public global::Opik.DatasetWriteType? Type410 { get; set; } + public global::Opik.DatasetVersionSummary? Type410 { get; set; } /// /// /// - public global::Opik.DatasetWriteVisibility? Type411 { get; set; } + public global::Opik.DatasetWrite? Type411 { get; set; } /// /// /// - public global::Opik.AssertionResult? Type412 { get; set; } + public global::Opik.DatasetWriteType? Type412 { get; set; } /// /// /// - public global::Opik.Comment? Type413 { get; set; } + public global::Opik.DatasetWriteVisibility? Type413 { get; set; } /// /// /// - public global::Opik.DatasetItem? Type414 { get; set; } + public global::Opik.AssertionResult? Type414 { get; set; } /// /// /// - public global::Opik.DatasetItemSource? Type415 { get; set; } + public global::Opik.Comment? Type415 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type416 { get; set; } + public global::Opik.DatasetItem? Type416 { get; set; } /// /// /// - public global::Opik.ExperimentItem? Type417 { get; set; } + public global::Opik.DatasetItemSource? Type417 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type418 { get; set; } + public global::System.Collections.Generic.IList? Type418 { get; set; } /// /// /// - public global::Opik.ExperimentRunSummary? Type419 { get; set; } + public global::Opik.ExperimentItem? Type419 { get; set; } /// /// /// - public global::Opik.DatasetItemBatch? Type420 { get; set; } + public global::System.Collections.Generic.Dictionary? Type420 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type421 { get; set; } + public global::Opik.ExperimentRunSummary? Type421 { get; set; } /// /// /// - public global::Opik.JsonListString? Type422 { get; set; } + public global::Opik.DatasetItemBatch? Type422 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type423 { get; set; } + public global::System.Collections.Generic.IList? Type423 { get; set; } /// /// /// - public global::Opik.FeedbackScore? Type424 { get; set; } + public global::Opik.JsonListString? Type424 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type425 { get; set; } + public global::System.Collections.Generic.IList? Type425 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type426 { get; set; } + public global::Opik.FeedbackScore? Type426 { get; set; } /// /// /// - public global::Opik.ExperimentItemTraceVisibilityMode? Type427 { get; set; } + public global::System.Collections.Generic.IList? Type427 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type428 { get; set; } + public global::System.Collections.Generic.Dictionary? Type428 { get; set; } /// /// /// - public global::Opik.ExperimentItemStatus? Type429 { get; set; } + public global::Opik.ExperimentItemTraceVisibilityMode? Type429 { get; set; } /// /// /// - public global::Opik.ExperimentRunSummaryStatus? Type430 { get; set; } + public global::System.Collections.Generic.IList? Type430 { get; set; } /// /// /// - public global::Opik.FeedbackScoreSource? Type431 { get; set; } + public global::Opik.ExperimentItemStatus? Type431 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type432 { get; set; } + public global::Opik.ExperimentRunSummaryStatus? Type432 { get; set; } /// /// /// - public global::Opik.ValueEntry? Type433 { get; set; } + public global::Opik.FeedbackScoreSource? Type433 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type434 { get; set; } + public global::System.Collections.Generic.Dictionary? Type434 { get; set; } /// /// /// - public global::Opik.ValueEntrySource? Type435 { get; set; } + public global::Opik.ValueEntry? Type435 { get; set; } /// /// /// - public global::Opik.DatasetItemBatchWrite? Type436 { get; set; } + public global::System.Collections.Generic.IList? Type436 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type437 { get; set; } + public global::Opik.ValueEntrySource? Type437 { get; set; } /// /// /// - public global::Opik.DatasetItemWrite? Type438 { get; set; } + public global::Opik.DatasetItemBatchWrite? Type438 { get; set; } /// /// /// - public global::Opik.DatasetItemWriteSource? Type439 { get; set; } + public global::System.Collections.Generic.IList? Type439 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type440 { get; set; } + public global::Opik.DatasetItemWrite? Type440 { get; set; } /// /// /// - public global::Opik.EvaluatorItemWrite? Type441 { get; set; } + public global::Opik.DatasetItemWriteSource? Type441 { get; set; } /// /// /// - public global::Opik.ExecutionPolicyWrite? Type442 { get; set; } + public global::System.Collections.Generic.IList? Type442 { get; set; } /// /// /// - public global::Opik.EvaluatorItemWriteType? Type443 { get; set; } + public global::Opik.EvaluatorItemWrite? Type443 { get; set; } /// /// /// - public global::Opik.CreateDatasetItemsFromSpansRequest? Type444 { get; set; } + public global::Opik.ExecutionPolicyWrite? Type444 { get; set; } /// /// /// - public global::Opik.SpanEnrichmentOptions? Type445 { get; set; } + public global::Opik.EvaluatorItemWriteType? Type445 { get; set; } /// /// /// - public global::Opik.CreateDatasetItemsFromTracesRequest? Type446 { get; set; } + public global::Opik.CreateDatasetItemsFromSpansRequest? Type446 { get; set; } /// /// /// - public global::Opik.TraceEnrichmentOptions? Type447 { get; set; } + public global::Opik.SpanEnrichmentOptions? Type447 { get; set; } /// /// /// - public global::Opik.DatasetIdentifier? Type448 { get; set; } + public global::Opik.CreateDatasetItemsFromTracesRequest? Type448 { get; set; } /// /// /// - public global::Opik.DatasetItemsDelete? Type449 { get; set; } + public global::Opik.TraceEnrichmentOptions? Type449 { get; set; } /// /// /// - public global::Opik.DatasetExpansionResponse? Type450 { get; set; } + public global::Opik.DatasetIdentifier? Type450 { get; set; } /// /// /// - public global::Opik.DatasetExpansion? Type451 { get; set; } + public global::Opik.DatasetItemsDelete? Type451 { get; set; } /// /// /// - public global::Opik.DatasetExpansionWrite? Type452 { get; set; } + public global::Opik.DatasetExpansionResponse? Type452 { get; set; } /// /// /// - public global::Opik.AssertionResultCompare? Type453 { get; set; } + public global::Opik.DatasetExpansion? Type453 { get; set; } /// /// /// - public global::Opik.ColumnCompare? Type454 { get; set; } + public global::Opik.DatasetExpansionWrite? Type454 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type455 { get; set; } + public global::Opik.AssertionResultCompare? Type455 { get; set; } /// /// /// - public global::Opik.ColumnCompareType? Type456 { get; set; } + public global::Opik.ColumnCompare? Type456 { get; set; } /// /// /// - public global::Opik.CommentCompare? Type457 { get; set; } + public global::System.Collections.Generic.IList? Type457 { get; set; } /// /// /// - public global::Opik.DatasetItemPageCompare? Type458 { get; set; } + public global::Opik.ColumnCompareType? Type458 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type459 { get; set; } + public global::Opik.CommentCompare? Type459 { get; set; } /// /// /// - public global::Opik.DatasetItemCompare? Type460 { get; set; } + public global::Opik.DatasetItemPageCompare? Type460 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type461 { get; set; } + public global::System.Collections.Generic.IList? Type461 { get; set; } /// /// /// - public global::Opik.DatasetItemCompareSource? Type462 { get; set; } + public global::Opik.DatasetItemCompare? Type462 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type463 { get; set; } + public global::System.Collections.Generic.IList? Type463 { get; set; } /// /// /// - public global::Opik.EvaluatorItemCompare? Type464 { get; set; } + public global::Opik.DatasetItemCompareSource? Type464 { get; set; } /// /// /// - public global::Opik.ExecutionPolicyCompare? Type465 { get; set; } + public global::System.Collections.Generic.IList? Type465 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type466 { get; set; } + public global::Opik.EvaluatorItemCompare? Type466 { get; set; } /// /// /// - public global::Opik.ExperimentItemCompare? Type467 { get; set; } + public global::Opik.ExecutionPolicyCompare? Type467 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type468 { get; set; } + public global::System.Collections.Generic.IList? Type468 { get; set; } /// /// /// - public global::Opik.ExperimentRunSummaryCompare? Type469 { get; set; } + public global::Opik.ExperimentItemCompare? Type469 { get; set; } /// /// /// - public global::Opik.EvaluatorItemCompareType? Type470 { get; set; } + public global::System.Collections.Generic.Dictionary? Type470 { get; set; } /// /// /// - public global::Opik.JsonNodeCompare? Type471 { get; set; } + public global::Opik.ExperimentRunSummaryCompare? Type471 { get; set; } /// /// /// - public global::Opik.JsonListStringCompare? Type472 { get; set; } + public global::Opik.EvaluatorItemCompareType? Type472 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type473 { get; set; } + public global::Opik.JsonNodeCompare? Type473 { get; set; } /// /// /// - public global::Opik.FeedbackScoreCompare? Type474 { get; set; } + public global::Opik.JsonListStringCompare? Type474 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type475 { get; set; } + public global::System.Collections.Generic.IList? Type475 { get; set; } /// /// /// - public global::Opik.ExperimentItemCompareTraceVisibilityMode? Type476 { get; set; } + public global::Opik.FeedbackScoreCompare? Type476 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type477 { get; set; } + public global::System.Collections.Generic.IList? Type477 { get; set; } /// /// /// - public global::Opik.ExperimentItemCompareStatus? Type478 { get; set; } + public global::Opik.ExperimentItemCompareTraceVisibilityMode? Type478 { get; set; } /// /// /// - public global::Opik.ExperimentRunSummaryCompareStatus? Type479 { get; set; } + public global::System.Collections.Generic.IList? Type479 { get; set; } /// /// /// - public global::Opik.FeedbackScoreCompareSource? Type480 { get; set; } + public global::Opik.ExperimentItemCompareStatus? Type480 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type481 { get; set; } + public global::Opik.ExperimentRunSummaryCompareStatus? Type481 { get; set; } /// /// /// - public global::Opik.ValueEntryCompare? Type482 { get; set; } + public global::Opik.FeedbackScoreCompareSource? Type482 { get; set; } /// /// /// - public global::Opik.ValueEntryCompareSource? Type483 { get; set; } + public global::System.Collections.Generic.Dictionary? Type483 { get; set; } /// /// /// - public global::Opik.DatasetPagePublic? Type484 { get; set; } + public global::Opik.ValueEntryCompare? Type484 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type485 { get; set; } + public global::Opik.ValueEntryCompareSource? Type485 { get; set; } /// /// /// - public global::Opik.DatasetPublic? Type486 { get; set; } + public global::Opik.DatasetPagePublic? Type486 { get; set; } /// /// /// - public global::Opik.DatasetVersionSummaryPublic? Type487 { get; set; } + public global::System.Collections.Generic.IList? Type487 { get; set; } /// /// /// - public global::Opik.DatasetPublicType? Type488 { get; set; } + public global::Opik.DatasetPublic? Type488 { get; set; } /// /// /// - public global::Opik.DatasetPublicVisibility? Type489 { get; set; } + public global::Opik.DatasetVersionSummaryPublic? Type489 { get; set; } /// /// /// - public global::Opik.DatasetPublicStatus? Type490 { get; set; } + public global::Opik.DatasetPublicType? Type490 { get; set; } /// /// /// - public global::Opik.DatasetIdentifierPublic? Type491 { get; set; } + public global::Opik.DatasetPublicVisibility? Type491 { get; set; } /// /// /// - public global::Opik.AvgValueStatPublic? Type492 { get; set; } + public global::Opik.DatasetPublicStatus? Type492 { get; set; } /// /// /// - public global::Opik.ProjectStatItemObjectPublic? Type493 { get; set; } + public global::Opik.DatasetIdentifierPublic? Type493 { get; set; } /// /// /// - public global::Opik.AvgValueStatPublicVariant2? Type494 { get; set; } + public global::Opik.AvgValueStatPublic? Type494 { get; set; } /// /// /// - public global::Opik.CountValueStatPublic? Type495 { get; set; } + public global::Opik.ProjectStatItemObjectPublic? Type495 { get; set; } /// /// /// - public global::Opik.CountValueStatPublicVariant2? Type496 { get; set; } + public global::Opik.AvgValueStatPublicVariant2? Type496 { get; set; } /// /// /// - public global::Opik.PercentageValueStatPublic? Type497 { get; set; } + public global::Opik.CountValueStatPublic? Type497 { get; set; } /// /// /// - public global::Opik.PercentageValueStatPublicVariant2? Type498 { get; set; } + public global::Opik.CountValueStatPublicVariant2? Type498 { get; set; } /// /// /// - public global::Opik.PercentageValuesPublic? Type499 { get; set; } + public global::Opik.PercentageValueStatPublic? Type499 { get; set; } /// /// /// - public global::Opik.ProjectStatItemObjectPublicType? Type500 { get; set; } + public global::Opik.PercentageValueStatPublicVariant2? Type500 { get; set; } /// /// /// - public global::Opik.ProjectStatItemObjectPublicDiscriminator? Type501 { get; set; } + public global::Opik.PercentageValuesPublic? Type501 { get; set; } /// /// /// - public global::Opik.ProjectStatItemObjectPublicDiscriminatorType? Type502 { get; set; } + public global::Opik.ProjectStatItemObjectPublicType? Type502 { get; set; } /// /// /// - public global::Opik.ProjectStatsPublic? Type503 { get; set; } + public global::Opik.ProjectStatItemObjectPublicDiscriminator? Type503 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type504 { get; set; } + public global::Opik.ProjectStatItemObjectPublicDiscriminatorType? Type504 { get; set; } /// /// /// - public global::Opik.DatasetExportJobPublic? Type505 { get; set; } + public global::Opik.ProjectStatsPublic? Type505 { get; set; } /// /// /// - public global::Opik.DatasetExportJobPublicStatus? Type506 { get; set; } + public global::System.Collections.Generic.IList? Type506 { get; set; } /// /// /// - public global::Opik.DatasetItemPublic? Type507 { get; set; } + public global::Opik.DatasetExportJobPublic? Type507 { get; set; } /// /// /// - public global::Opik.DatasetItemPublicSource? Type508 { get; set; } + public global::Opik.DatasetExportJobPublicStatus? Type508 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type509 { get; set; } + public global::Opik.DatasetItemPublic? Type509 { get; set; } /// /// /// - public global::Opik.ExperimentItemPublic? Type510 { get; set; } + public global::Opik.DatasetItemPublicSource? Type510 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type511 { get; set; } + public global::System.Collections.Generic.IList? Type511 { get; set; } /// /// /// - public global::Opik.ExperimentRunSummaryPublic? Type512 { get; set; } + public global::Opik.ExperimentItemPublic? Type512 { get; set; } /// /// /// - public global::Opik.ExperimentItemPublicTraceVisibilityMode? Type513 { get; set; } + public global::System.Collections.Generic.Dictionary? Type513 { get; set; } /// /// /// - public global::Opik.ExperimentRunSummaryPublicStatus? Type514 { get; set; } + public global::Opik.ExperimentRunSummaryPublic? Type514 { get; set; } /// /// /// - public global::Opik.ColumnPublic? Type515 { get; set; } + public global::Opik.ExperimentItemPublicTraceVisibilityMode? Type515 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type516 { get; set; } + public global::Opik.ExperimentRunSummaryPublicStatus? Type516 { get; set; } /// /// /// - public global::Opik.ColumnPublicType? Type517 { get; set; } + public global::Opik.ColumnPublic? Type517 { get; set; } /// /// /// - public global::Opik.DatasetItemPagePublic? Type518 { get; set; } + public global::System.Collections.Generic.IList? Type518 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type519 { get; set; } + public global::Opik.ColumnPublicType? Type519 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type520 { get; set; } + public global::Opik.DatasetItemPagePublic? Type520 { get; set; } /// /// /// - public global::Opik.Column? Type521 { get; set; } + public global::System.Collections.Generic.IList? Type521 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type522 { get; set; } + public global::System.Collections.Generic.IList? Type522 { get; set; } /// /// /// - public global::Opik.ColumnType? Type523 { get; set; } + public global::Opik.Column? Type523 { get; set; } /// /// /// - public global::Opik.PageColumns? Type524 { get; set; } + public global::System.Collections.Generic.IList? Type524 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type525 { get; set; } + public global::Opik.ColumnType? Type525 { get; set; } /// /// /// - public global::Opik.ChunkedOutputJsonNode? Type526 { get; set; } + public global::Opik.PageColumns? Type526 { get; set; } /// /// /// - public global::Opik.ChunkedOutputJsonNodeType? Type527 { get; set; } + public global::System.Collections.Generic.IList? Type527 { get; set; } /// /// /// - public global::Opik.DatasetItemStreamRequest? Type528 { get; set; } + public global::Opik.ChunkedOutputJsonNode? Type528 { get; set; } /// /// /// - public global::Opik.DatasetUpdate? Type529 { get; set; } + public global::Opik.ChunkedOutputJsonNodeType? Type529 { get; set; } /// /// /// - public global::Opik.DatasetUpdateVisibility? Type530 { get; set; } + public global::Opik.DatasetItemStreamRequest? Type530 { get; set; } /// /// /// - public global::Opik.DatasetVersionDiff? Type531 { get; set; } + public global::Opik.DatasetUpdate? Type531 { get; set; } /// /// /// - public global::Opik.DatasetVersionDiffStats? Type532 { get; set; } + public global::Opik.DatasetUpdateVisibility? Type532 { get; set; } /// /// /// - public global::Opik.DatasetVersionTag? Type533 { get; set; } + public global::Opik.DatasetVersionDiff? Type533 { get; set; } /// /// /// - public global::Opik.DatasetVersionPagePublic? Type534 { get; set; } + public global::Opik.DatasetVersionDiffStats? Type534 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type535 { get; set; } + public global::Opik.DatasetVersionTag? Type535 { get; set; } /// /// /// - public global::Opik.DatasetVersionRestorePublic? Type536 { get; set; } + public global::Opik.DatasetVersionPagePublic? Type536 { get; set; } /// /// /// - public global::Opik.DatasetVersionRetrieveRequestPublic? Type537 { get; set; } + public global::System.Collections.Generic.IList? Type537 { get; set; } /// /// /// - public global::Opik.DatasetVersionUpdatePublic? Type538 { get; set; } + public global::Opik.DatasetVersionRestorePublic? Type538 { get; set; } /// /// /// - public global::Opik.Environment? Type539 { get; set; } + public global::Opik.DatasetVersionRetrieveRequestPublic? Type539 { get; set; } /// /// /// - public global::Opik.EnvironmentWrite? Type540 { get; set; } + public global::Opik.DatasetVersionUpdatePublic? Type540 { get; set; } /// /// /// - public global::Opik.EnvironmentPagePublic? Type541 { get; set; } + public global::Opik.Environment? Type541 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type542 { get; set; } + public global::Opik.EnvironmentWrite? Type542 { get; set; } /// /// /// - public global::Opik.EnvironmentPublic? Type543 { get; set; } + public global::Opik.EnvironmentPagePublic? Type543 { get; set; } /// /// /// - public global::Opik.EnvironmentUpdate? Type544 { get; set; } + public global::System.Collections.Generic.IList? Type544 { get; set; } /// /// /// - public global::Opik.ExperimentBatchUpdate? Type545 { get; set; } + public global::Opik.EnvironmentPublic? Type545 { get; set; } /// /// /// - public global::Opik.ExperimentUpdate? Type546 { get; set; } + public global::Opik.EnvironmentUpdate? Type546 { get; set; } /// /// /// - public global::Opik.ExperimentScore? Type547 { get; set; } + public global::Opik.ExperimentBatchUpdate? Type547 { get; set; } /// /// /// - public global::Opik.ExperimentUpdateType? Type548 { get; set; } + public global::Opik.ExperimentUpdate? Type548 { get; set; } /// /// /// - public global::Opik.ExperimentUpdateStatus? Type549 { get; set; } + public global::Opik.ExperimentScore? Type549 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type550 { get; set; } + public global::Opik.ExperimentUpdateType? Type550 { get; set; } /// /// /// - public global::Opik.AssertionScoreAverage? Type551 { get; set; } + public global::Opik.ExperimentUpdateStatus? Type551 { get; set; } /// /// /// - public global::Opik.Experiment? Type552 { get; set; } + public global::System.Collections.Generic.IList? Type552 { get; set; } /// /// /// - public global::Opik.ExperimentType? Type553 { get; set; } + public global::Opik.AssertionScoreAverage? Type553 { get; set; } /// /// /// - public global::Opik.ExperimentEvaluationMethod? Type554 { get; set; } + public global::Opik.Experiment? Type554 { get; set; } /// /// /// - public global::Opik.PercentageValues? Type555 { get; set; } + public global::Opik.ExperimentType? Type555 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type556 { get; set; } + public global::Opik.ExperimentEvaluationMethod? Type556 { get; set; } /// /// /// - public global::Opik.ExperimentStatus? Type557 { get; set; } + public global::Opik.PercentageValues? Type557 { get; set; } /// /// /// - public global::Opik.PromptVersionLink? Type558 { get; set; } + public global::System.Collections.Generic.Dictionary? Type558 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type559 { get; set; } + public global::Opik.ExperimentStatus? Type559 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type560 { get; set; } + public global::Opik.PromptVersionLink? Type560 { get; set; } /// /// /// - public global::Opik.ExperimentScoreWrite? Type561 { get; set; } + public global::System.Collections.Generic.IList? Type561 { get; set; } /// /// /// - public global::Opik.ExperimentWrite? Type562 { get; set; } + public global::System.Collections.Generic.IList? Type562 { get; set; } /// /// /// - public global::Opik.JsonListStringWrite? Type563 { get; set; } + public global::Opik.ExperimentScoreWrite? Type563 { get; set; } /// /// /// - public global::Opik.ExperimentWriteType? Type564 { get; set; } + public global::Opik.ExperimentWrite? Type564 { get; set; } /// /// /// - public global::Opik.ExperimentWriteEvaluationMethod? Type565 { get; set; } + public global::Opik.JsonListStringWrite? Type565 { get; set; } /// /// /// - public global::Opik.ExperimentWriteStatus? Type566 { get; set; } + public global::Opik.ExperimentWriteType? Type566 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type567 { get; set; } + public global::Opik.ExperimentWriteEvaluationMethod? Type567 { get; set; } /// /// /// - public global::Opik.PromptVersionLinkWrite? Type568 { get; set; } + public global::Opik.ExperimentWriteStatus? Type568 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type569 { get; set; } + public global::System.Collections.Generic.IList? Type569 { get; set; } /// /// /// - public global::Opik.ExperimentItemsBatch? Type570 { get; set; } + public global::Opik.PromptVersionLinkWrite? Type570 { get; set; } /// /// /// - public global::Opik.ExperimentItemsDelete? Type571 { get; set; } + public global::System.Collections.Generic.IList? Type571 { get; set; } /// /// /// - public global::Opik.DeleteIdsHolder? Type572 { get; set; } + public global::Opik.ExperimentItemsBatch? Type572 { get; set; } /// /// /// - public global::Opik.ExperimentExecutionResponse? Type573 { get; set; } + public global::Opik.ExperimentItemsDelete? Type573 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type574 { get; set; } + public global::Opik.DeleteIdsHolder? Type574 { get; set; } /// /// /// - public global::Opik.ExperimentInfo? Type575 { get; set; } + public global::Opik.ExperimentExecutionResponse? Type575 { get; set; } /// /// /// - public global::Opik.ExperimentExecutionRequest? Type576 { get; set; } + public global::System.Collections.Generic.IList? Type576 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type577 { get; set; } + public global::Opik.ExperimentInfo? Type577 { get; set; } /// /// /// - public global::Opik.PromptVariant? Type578 { get; set; } + public global::Opik.ExperimentExecutionRequest? Type578 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type579 { get; set; } + public global::System.Collections.Generic.IList? Type579 { get; set; } /// /// /// - public global::Opik.Check? Type580 { get; set; } + public global::Opik.PromptVariant? Type580 { get; set; } /// /// /// - public global::Opik.CheckName? Type581 { get; set; } + public global::System.Collections.Generic.Dictionary? Type581 { get; set; } /// /// /// - public global::Opik.CheckResult? Type582 { get; set; } + public global::Opik.Check? Type582 { get; set; } /// /// /// - public global::Opik.ErrorInfo? Type583 { get; set; } + public global::Opik.CheckName? Type583 { get; set; } /// /// /// - public global::Opik.ExperimentItemBulkRecord? Type584 { get; set; } + public global::Opik.CheckResult? Type584 { get; set; } /// /// /// - public global::Opik.Trace? Type585 { get; set; } + public global::Opik.ErrorInfo? Type585 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type586 { get; set; } + public global::Opik.ExperimentItemBulkRecord? Type586 { get; set; } /// /// /// - public global::Opik.Span? Type587 { get; set; } + public global::Opik.Trace? Type587 { get; set; } /// /// /// - public global::Opik.ExperimentItemBulkUpload? Type588 { get; set; } + public global::System.Collections.Generic.IList? Type588 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type589 { get; set; } + public global::Opik.Span? Type589 { get; set; } /// /// /// - public global::Opik.ExperimentItemReference? Type590 { get; set; } + public global::Opik.ExperimentItemBulkUpload? Type590 { get; set; } /// /// /// - public global::Opik.GuardrailsValidation? Type591 { get; set; } + public global::System.Collections.Generic.IList? Type591 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type592 { get; set; } + public global::Opik.ExperimentItemReference? Type592 { get; set; } /// /// /// - public global::Opik.SpanType? Type593 { get; set; } + public global::Opik.GuardrailsValidation? Type593 { get; set; } /// /// /// - public global::Opik.SpanSource? Type594 { get; set; } + public global::System.Collections.Generic.IList? Type594 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type595 { get; set; } + public global::Opik.SpanType? Type595 { get; set; } /// /// /// - public global::Opik.TraceVisibilityMode? Type596 { get; set; } + public global::Opik.SpanSource? Type596 { get; set; } /// /// /// - public global::Opik.TraceSource? Type597 { get; set; } + public global::System.Collections.Generic.IList? Type597 { get; set; } /// /// /// - public global::Opik.ErrorInfoExperimentItemBulkWriteView? Type598 { get; set; } + public global::Opik.TraceVisibilityMode? Type598 { get; set; } /// /// /// - public global::Opik.ExperimentItemBulkRecordExperimentItemBulkWriteView? Type599 { get; set; } + public global::Opik.TraceSource? Type599 { get; set; } /// /// /// - public global::Opik.JsonListStringExperimentItemBulkWriteView? Type600 { get; set; } + public global::Opik.ErrorInfoExperimentItemBulkWriteView? Type600 { get; set; } /// /// /// - public global::Opik.TraceExperimentItemBulkWriteView? Type601 { get; set; } + public global::Opik.ExperimentItemBulkRecordExperimentItemBulkWriteView? Type601 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type602 { get; set; } + public global::Opik.JsonListStringExperimentItemBulkWriteView? Type602 { get; set; } /// /// /// - public global::Opik.SpanExperimentItemBulkWriteView? Type603 { get; set; } + public global::Opik.TraceExperimentItemBulkWriteView? Type603 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type604 { get; set; } + public global::System.Collections.Generic.IList? Type604 { get; set; } /// /// /// - public global::Opik.FeedbackScoreExperimentItemBulkWriteView? Type605 { get; set; } + public global::Opik.SpanExperimentItemBulkWriteView? Type605 { get; set; } /// /// /// - public global::Opik.ExperimentItemBulkUploadExperimentItemBulkWriteView? Type606 { get; set; } + public global::System.Collections.Generic.IList? Type606 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type607 { get; set; } + public global::Opik.FeedbackScoreExperimentItemBulkWriteView? Type607 { get; set; } /// /// /// - public global::Opik.FeedbackScoreExperimentItemBulkWriteViewSource? Type608 { get; set; } + public global::Opik.ExperimentItemBulkUploadExperimentItemBulkWriteView? Type608 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type609 { get; set; } + public global::System.Collections.Generic.IList? Type609 { get; set; } /// /// /// - public global::Opik.ValueEntryExperimentItemBulkWriteView? Type610 { get; set; } + public global::Opik.FeedbackScoreExperimentItemBulkWriteViewSource? Type610 { get; set; } /// /// /// - public global::Opik.SpanExperimentItemBulkWriteViewType? Type611 { get; set; } + public global::System.Collections.Generic.Dictionary? Type611 { get; set; } /// /// /// - public global::Opik.SpanExperimentItemBulkWriteViewSource? Type612 { get; set; } + public global::Opik.ValueEntryExperimentItemBulkWriteView? Type612 { get; set; } /// /// /// - public global::Opik.TraceExperimentItemBulkWriteViewSource? Type613 { get; set; } + public global::Opik.SpanExperimentItemBulkWriteViewType? Type613 { get; set; } /// /// /// - public global::Opik.ValueEntryExperimentItemBulkWriteViewSource? Type614 { get; set; } + public global::Opik.SpanExperimentItemBulkWriteViewSource? Type614 { get; set; } /// /// /// - public global::Opik.AssertionScoreAveragePublic? Type615 { get; set; } + public global::Opik.TraceExperimentItemBulkWriteViewSource? Type615 { get; set; } /// /// /// - public global::Opik.CommentPublic? Type616 { get; set; } + public global::Opik.ValueEntryExperimentItemBulkWriteViewSource? Type616 { get; set; } /// /// /// - public global::Opik.ExperimentPagePublic? Type617 { get; set; } + public global::Opik.AssertionScoreAveragePublic? Type617 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type618 { get; set; } + public global::Opik.CommentPublic? Type618 { get; set; } /// /// /// - public global::Opik.ExperimentPublic? Type619 { get; set; } + public global::Opik.ExperimentPagePublic? Type619 { get; set; } /// /// /// - public global::Opik.ExperimentScorePublic? Type620 { get; set; } + public global::System.Collections.Generic.IList? Type620 { get; set; } /// /// /// - public global::Opik.JsonListStringPublic? Type621 { get; set; } + public global::Opik.ExperimentPublic? Type621 { get; set; } /// /// /// - public global::Opik.ExperimentPublicType? Type622 { get; set; } + public global::Opik.ExperimentScorePublic? Type622 { get; set; } /// /// /// - public global::Opik.ExperimentPublicEvaluationMethod? Type623 { get; set; } + public global::Opik.JsonListStringPublic? Type623 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type624 { get; set; } + public global::Opik.ExperimentPublicType? Type624 { get; set; } /// /// /// - public global::Opik.ExperimentPublicStatus? Type625 { get; set; } + public global::Opik.ExperimentPublicEvaluationMethod? Type625 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type626 { get; set; } + public global::System.Collections.Generic.IList? Type626 { get; set; } /// /// /// - public global::Opik.PromptVersionLinkPublic? Type627 { get; set; } + public global::Opik.ExperimentPublicStatus? Type627 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type628 { get; set; } + public global::System.Collections.Generic.IList? Type628 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type629 { get; set; } + public global::Opik.PromptVersionLinkPublic? Type629 { get; set; } /// /// /// - public global::Opik.FeedbackScoreNamesPublic? Type630 { get; set; } + public global::System.Collections.Generic.IList? Type630 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type631 { get; set; } + public global::System.Collections.Generic.IList? Type631 { get; set; } /// /// /// - public global::Opik.ScoreNamePublic? Type632 { get; set; } + public global::Opik.FeedbackScoreNamesPublic? Type632 { get; set; } /// /// /// - public global::Opik.ExperimentGroupResponse? Type633 { get; set; } + public global::System.Collections.Generic.IList? Type633 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type634 { get; set; } + public global::Opik.ScoreNamePublic? Type634 { get; set; } /// /// /// - public global::Opik.GroupContent? Type635 { get; set; } + public global::Opik.ExperimentGroupResponse? Type635 { get; set; } /// /// /// - public global::Opik.GroupDetails? Type636 { get; set; } + public global::System.Collections.Generic.Dictionary? Type636 { get; set; } /// /// /// - public global::Opik.GroupDetail? Type637 { get; set; } + public global::Opik.GroupContent? Type637 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type638 { get; set; } + public global::Opik.GroupDetails? Type638 { get; set; } /// /// /// - public global::Opik.AggregationData? Type639 { get; set; } + public global::Opik.GroupDetail? Type639 { get; set; } /// /// /// - public global::Opik.ExperimentGroupAggregationsResponse? Type640 { get; set; } + public global::System.Collections.Generic.IList? Type640 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type641 { get; set; } + public global::Opik.AggregationData? Type641 { get; set; } /// /// /// - public global::Opik.GroupContentWithAggregations? Type642 { get; set; } + public global::Opik.ExperimentGroupAggregationsResponse? Type642 { get; set; } /// /// /// - public global::Opik.IdsHolder? Type643 { get; set; } + public global::System.Collections.Generic.Dictionary? Type643 { get; set; } /// /// /// - public global::Opik.ExperimentItemStreamRequest? Type644 { get; set; } + public global::Opik.GroupContentWithAggregations? Type644 { get; set; } /// /// /// - public global::Opik.ChunkedOutputJsonNodePublic? Type645 { get; set; } + public global::Opik.IdsHolder? Type645 { get; set; } /// /// /// - public global::Opik.ChunkedOutputJsonNodePublicType? Type646 { get; set; } + public global::Opik.ExperimentItemStreamRequest? Type646 { get; set; } /// /// /// - public global::Opik.ExperimentStreamRequestPublic? Type647 { get; set; } + public global::Opik.ChunkedOutputJsonNodePublic? Type647 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinition? Type648 { get; set; } + public global::Opik.ChunkedOutputJsonNodePublicType? Type648 { get; set; } /// /// /// - public global::Opik.Feedback? Type649 { get; set; } + public global::Opik.ExperimentStreamRequestPublic? Type649 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinitionVariant2? Type650 { get; set; } + public global::Opik.BooleanFeedbackDefinition? Type650 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDetail? Type651 { get; set; } + public global::Opik.Feedback? Type651 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinition? Type652 { get; set; } + public global::Opik.BooleanFeedbackDefinitionVariant2? Type652 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinitionVariant2? Type653 { get; set; } + public global::Opik.BooleanFeedbackDetail? Type653 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDetail? Type654 { get; set; } + public global::Opik.CategoricalFeedbackDefinition? Type654 { get; set; } /// /// /// - public global::Opik.FeedbackType? Type655 { get; set; } + public global::Opik.CategoricalFeedbackDefinitionVariant2? Type655 { get; set; } /// /// /// - public global::Opik.FeedbackDiscriminator? Type656 { get; set; } + public global::Opik.CategoricalFeedbackDetail? Type656 { get; set; } /// /// /// - public global::Opik.FeedbackDiscriminatorType? Type657 { get; set; } + public global::Opik.FeedbackType? Type657 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinition? Type658 { get; set; } + public global::Opik.FeedbackDiscriminator? Type658 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinitionVariant2? Type659 { get; set; } + public global::Opik.FeedbackDiscriminatorType? Type659 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDetail? Type660 { get; set; } + public global::Opik.NumericalFeedbackDefinition? Type660 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinitionCreate? Type661 { get; set; } + public global::Opik.NumericalFeedbackDefinitionVariant2? Type661 { get; set; } /// /// /// - public global::Opik.FeedbackCreate? Type662 { get; set; } + public global::Opik.NumericalFeedbackDetail? Type662 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinitionCreateVariant2? Type663 { get; set; } + public global::Opik.BooleanFeedbackDefinitionCreate? Type663 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDetailCreate? Type664 { get; set; } + public global::Opik.FeedbackCreate? Type664 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinitionCreate? Type665 { get; set; } + public global::Opik.BooleanFeedbackDefinitionCreateVariant2? Type665 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinitionCreateVariant2? Type666 { get; set; } + public global::Opik.BooleanFeedbackDetailCreate? Type666 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDetailCreate? Type667 { get; set; } + public global::Opik.CategoricalFeedbackDefinitionCreate? Type667 { get; set; } /// /// /// - public global::Opik.FeedbackCreateType? Type668 { get; set; } + public global::Opik.CategoricalFeedbackDefinitionCreateVariant2? Type668 { get; set; } /// /// /// - public global::Opik.FeedbackCreateDiscriminator? Type669 { get; set; } + public global::Opik.CategoricalFeedbackDetailCreate? Type669 { get; set; } /// /// /// - public global::Opik.FeedbackCreateDiscriminatorType? Type670 { get; set; } + public global::Opik.FeedbackCreateType? Type670 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinitionCreate? Type671 { get; set; } + public global::Opik.FeedbackCreateDiscriminator? Type671 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinitionCreateVariant2? Type672 { get; set; } + public global::Opik.FeedbackCreateDiscriminatorType? Type672 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDetailCreate? Type673 { get; set; } + public global::Opik.NumericalFeedbackDefinitionCreate? Type673 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinitionPublic? Type674 { get; set; } + public global::Opik.NumericalFeedbackDefinitionCreateVariant2? Type674 { get; set; } /// /// /// - public global::Opik.FeedbackPublic? Type675 { get; set; } + public global::Opik.NumericalFeedbackDetailCreate? Type675 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinitionPublicVariant2? Type676 { get; set; } + public global::Opik.BooleanFeedbackDefinitionPublic? Type676 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDetailPublic? Type677 { get; set; } + public global::Opik.FeedbackPublic? Type677 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinitionPublic? Type678 { get; set; } + public global::Opik.BooleanFeedbackDefinitionPublicVariant2? Type678 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinitionPublicVariant2? Type679 { get; set; } + public global::Opik.BooleanFeedbackDetailPublic? Type679 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDetailPublic? Type680 { get; set; } + public global::Opik.CategoricalFeedbackDefinitionPublic? Type680 { get; set; } /// /// /// - public global::Opik.FeedbackDefinitionPagePublic? Type681 { get; set; } + public global::Opik.CategoricalFeedbackDefinitionPublicVariant2? Type681 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type682 { get; set; } + public global::Opik.CategoricalFeedbackDetailPublic? Type682 { get; set; } /// /// /// - public global::Opik.FeedbackObjectPublic? Type683 { get; set; } + public global::Opik.FeedbackDefinitionPagePublic? Type683 { get; set; } /// /// /// - public global::Opik.FeedbackObjectPublicType? Type684 { get; set; } + public global::System.Collections.Generic.IList? Type684 { get; set; } /// /// /// - public global::Opik.FeedbackObjectPublicDiscriminator? Type685 { get; set; } + public global::Opik.FeedbackObjectPublic? Type685 { get; set; } /// /// /// - public global::Opik.FeedbackObjectPublicDiscriminatorType? Type686 { get; set; } + public global::Opik.FeedbackObjectPublicType? Type686 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinitionPublic? Type687 { get; set; } + public global::Opik.FeedbackObjectPublicDiscriminator? Type687 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinitionPublicVariant2? Type688 { get; set; } + public global::Opik.FeedbackObjectPublicDiscriminatorType? Type688 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDetailPublic? Type689 { get; set; } + public global::Opik.NumericalFeedbackDefinitionPublic? Type689 { get; set; } /// /// /// - public global::Opik.FeedbackPublicType? Type690 { get; set; } + public global::Opik.NumericalFeedbackDefinitionPublicVariant2? Type690 { get; set; } /// /// /// - public global::Opik.FeedbackPublicDiscriminator? Type691 { get; set; } + public global::Opik.NumericalFeedbackDetailPublic? Type691 { get; set; } /// /// /// - public global::Opik.FeedbackPublicDiscriminatorType? Type692 { get; set; } + public global::Opik.FeedbackPublicType? Type692 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinitionUpdate? Type693 { get; set; } + public global::Opik.FeedbackPublicDiscriminator? Type693 { get; set; } /// /// /// - public global::Opik.FeedbackUpdate? Type694 { get; set; } + public global::Opik.FeedbackPublicDiscriminatorType? Type694 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDefinitionUpdateVariant2? Type695 { get; set; } + public global::Opik.BooleanFeedbackDefinitionUpdate? Type695 { get; set; } /// /// /// - public global::Opik.BooleanFeedbackDetailUpdate? Type696 { get; set; } + public global::Opik.FeedbackUpdate? Type696 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinitionUpdate? Type697 { get; set; } + public global::Opik.BooleanFeedbackDefinitionUpdateVariant2? Type697 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDefinitionUpdateVariant2? Type698 { get; set; } + public global::Opik.BooleanFeedbackDetailUpdate? Type698 { get; set; } /// /// /// - public global::Opik.CategoricalFeedbackDetailUpdate? Type699 { get; set; } + public global::Opik.CategoricalFeedbackDefinitionUpdate? Type699 { get; set; } /// /// /// - public global::Opik.FeedbackUpdateType? Type700 { get; set; } + public global::Opik.CategoricalFeedbackDefinitionUpdateVariant2? Type700 { get; set; } /// /// /// - public global::Opik.FeedbackUpdateDiscriminator? Type701 { get; set; } + public global::Opik.CategoricalFeedbackDetailUpdate? Type701 { get; set; } /// /// /// - public global::Opik.FeedbackUpdateDiscriminatorType? Type702 { get; set; } + public global::Opik.FeedbackUpdateType? Type702 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinitionUpdate? Type703 { get; set; } + public global::Opik.FeedbackUpdateDiscriminator? Type703 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDefinitionUpdateVariant2? Type704 { get; set; } + public global::Opik.FeedbackUpdateDiscriminatorType? Type704 { get; set; } /// /// /// - public global::Opik.NumericalFeedbackDetailUpdate? Type705 { get; set; } + public global::Opik.NumericalFeedbackDefinitionUpdate? Type705 { get; set; } /// /// /// - public global::Opik.Guardrail? Type706 { get; set; } + public global::Opik.NumericalFeedbackDefinitionUpdateVariant2? Type706 { get; set; } /// /// /// - public global::Opik.GuardrailName? Type707 { get; set; } + public global::Opik.NumericalFeedbackDetailUpdate? Type707 { get; set; } /// /// /// - public global::Opik.GuardrailResult? Type708 { get; set; } + public global::Opik.Guardrail? Type708 { get; set; } /// /// /// - public global::Opik.GuardrailBatch? Type709 { get; set; } + public global::Opik.GuardrailName? Type709 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type710 { get; set; } + public global::Opik.GuardrailResult? Type710 { get; set; } /// /// /// - public global::Opik.GuardrailBatchWrite? Type711 { get; set; } + public global::Opik.GuardrailBatch? Type711 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type712 { get; set; } + public global::System.Collections.Generic.IList? Type712 { get; set; } /// /// /// - public global::Opik.GuardrailWrite? Type713 { get; set; } + public global::Opik.GuardrailBatchWrite? Type713 { get; set; } /// /// /// - public global::Opik.GuardrailWriteName? Type714 { get; set; } + public global::System.Collections.Generic.IList? Type714 { get; set; } /// /// /// - public global::Opik.GuardrailWriteResult? Type715 { get; set; } + public global::Opik.GuardrailWrite? Type715 { get; set; } /// /// /// - public global::Opik.ProviderApiKeyPagePublic? Type716 { get; set; } + public global::Opik.GuardrailWriteName? Type716 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type717 { get; set; } + public global::Opik.GuardrailWriteResult? Type717 { get; set; } /// /// /// - public global::Opik.ProviderApiKeyPublic? Type718 { get; set; } + public global::Opik.ProviderApiKeyPagePublic? Type718 { get; set; } /// /// /// - public global::Opik.ProviderApiKeyPublicProvider? Type719 { get; set; } + public global::System.Collections.Generic.IList? Type719 { get; set; } /// /// /// - public global::Opik.ProviderApiKey? Type720 { get; set; } + public global::Opik.ProviderApiKeyPublic? Type720 { get; set; } /// /// /// - public global::Opik.ProviderApiKeyProvider? Type721 { get; set; } + public global::Opik.ProviderApiKeyPublicProvider? Type721 { get; set; } /// /// /// - public global::Opik.ProviderApiKeyWrite? Type722 { get; set; } + public global::Opik.ProviderApiKey? Type722 { get; set; } /// /// /// - public global::Opik.ProviderApiKeyWriteProvider? Type723 { get; set; } + public global::Opik.ProviderApiKeyProvider? Type723 { get; set; } /// /// /// - public global::Opik.ProviderApiKeyUpdate? Type724 { get; set; } + public global::Opik.ProviderApiKeyWrite? Type724 { get; set; } /// /// /// - public global::Opik.LocalRunnerLogEntry? Type725 { get; set; } + public global::Opik.ProviderApiKeyWriteProvider? Type725 { get; set; } /// /// /// - public global::Opik.BridgeCommandSubmitResponse? Type726 { get; set; } + public global::Opik.ProviderApiKeyUpdate? Type726 { get; set; } /// /// /// - public global::Opik.BridgeCommandSubmitRequest? Type727 { get; set; } + public global::Opik.LocalRunnerLogEntry? Type727 { get; set; } /// /// /// - public global::Opik.BridgeCommandSubmitRequestType? Type728 { get; set; } + public global::Opik.BridgeCommandSubmitResponse? Type728 { get; set; } /// /// /// - public global::Opik.CreateLocalRunnerJobRequest? Type729 { get; set; } + public global::Opik.BridgeCommandSubmitRequest? Type729 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type730 { get; set; } + public global::Opik.BridgeCommandSubmitRequestType? Type730 { get; set; } /// /// /// - public global::Opik.LocalRunnerJobMetadata? Type731 { get; set; } + public global::Opik.CreateLocalRunnerJobRequest? Type731 { get; set; } /// /// /// - public global::Opik.BridgeCommand? Type732 { get; set; } + public global::System.Collections.Generic.Dictionary? Type732 { get; set; } /// /// /// - public global::Opik.BridgeCommandType? Type733 { get; set; } + public global::Opik.LocalRunnerJobMetadata? Type733 { get; set; } /// /// /// - public global::Opik.BridgeCommandStatus? Type734 { get; set; } + public global::Opik.BridgeCommand? Type734 { get; set; } /// /// /// - public global::Opik.LocalRunnerJob? Type735 { get; set; } + public global::Opik.BridgeCommandType? Type735 { get; set; } /// /// /// - public global::Opik.LocalRunnerJobStatus? Type736 { get; set; } + public global::Opik.BridgeCommandStatus? Type736 { get; set; } /// /// /// - public global::Opik.Agent? Type737 { get; set; } + public global::Opik.LocalRunnerJob? Type737 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type738 { get; set; } + public global::Opik.LocalRunnerJobStatus? Type738 { get; set; } /// /// /// - public global::Opik.Param? Type739 { get; set; } + public global::Opik.Agent? Type739 { get; set; } /// /// /// - public global::Opik.LocalRunner? Type740 { get; set; } + public global::System.Collections.Generic.IList? Type740 { get; set; } /// /// /// - public global::Opik.LocalRunnerStatus? Type741 { get; set; } + public global::Opik.Param? Type741 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type742 { get; set; } + public global::Opik.LocalRunner? Type742 { get; set; } /// /// /// - public global::Opik.LocalRunnerType? Type743 { get; set; } + public global::Opik.LocalRunnerStatus? Type743 { get; set; } /// /// /// - public global::Opik.ParamPresence? Type744 { get; set; } + public global::System.Collections.Generic.IList? Type744 { get; set; } /// /// /// - public global::Opik.LocalRunnerHeartbeatResponse? Type745 { get; set; } + public global::Opik.LocalRunnerType? Type745 { get; set; } /// /// /// - public global::Opik.LocalRunnerHeartbeatRequest? Type746 { get; set; } + public global::Opik.ParamPresence? Type746 { get; set; } /// /// /// - public global::Opik.LocalRunnerJobPage? Type747 { get; set; } + public global::Opik.LocalRunnerHeartbeatResponse? Type747 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type748 { get; set; } + public global::Opik.LocalRunnerHeartbeatRequest? Type748 { get; set; } /// /// /// - public global::Opik.LocalRunnerPage? Type749 { get; set; } + public global::Opik.LocalRunnerJobPage? Type749 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type750 { get; set; } + public global::System.Collections.Generic.IList? Type750 { get; set; } /// /// /// - public global::Opik.BridgeCommandBatchResponse? Type751 { get; set; } + public global::Opik.LocalRunnerPage? Type751 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type752 { get; set; } + public global::System.Collections.Generic.IList? Type752 { get; set; } /// /// /// - public global::Opik.BridgeCommandItem? Type753 { get; set; } + public global::Opik.BridgeCommandBatchResponse? Type753 { get; set; } /// /// /// - public global::Opik.BridgeCommandItemType? Type754 { get; set; } + public global::System.Collections.Generic.IList? Type754 { get; set; } /// /// /// - public global::Opik.BridgeCommandNextRequest? Type755 { get; set; } + public global::Opik.BridgeCommandItem? Type755 { get; set; } /// /// /// - public global::Opik.BridgeCommandResultRequest? Type756 { get; set; } + public global::Opik.BridgeCommandItemType? Type756 { get; set; } /// /// /// - public global::Opik.BridgeCommandResultRequestStatus? Type757 { get; set; } + public global::Opik.BridgeCommandNextRequest? Type757 { get; set; } /// /// /// - public global::Opik.LocalRunnerJobResultRequest? Type758 { get; set; } + public global::Opik.BridgeCommandResultRequest? Type758 { get; set; } /// /// /// - public global::Opik.LocalRunnerJobResultRequestStatus? Type759 { get; set; } + public global::Opik.BridgeCommandResultRequestStatus? Type759 { get; set; } /// /// /// - public global::Opik.ManualEvaluationResponse? Type760 { get; set; } + public global::Opik.LocalRunnerJobResultRequest? Type760 { get; set; } /// /// /// - public global::Opik.ManualEvaluationRequest? Type761 { get; set; } + public global::Opik.LocalRunnerJobResultRequestStatus? Type761 { get; set; } /// /// /// - public global::Opik.ManualEvaluationRequestEntityType? Type762 { get; set; } + public global::Opik.ManualEvaluationResponse? Type762 { get; set; } /// /// /// - public global::Opik.OllamaModel? Type763 { get; set; } + public global::Opik.ManualEvaluationRequest? Type763 { get; set; } /// /// /// - public global::Opik.OllamaInstanceBaseUrlRequest? Type764 { get; set; } + public global::Opik.ManualEvaluationRequestEntityType? Type764 { get; set; } /// /// /// - public global::Opik.OllamaConnectionTestResponse? Type765 { get; set; } + public global::Opik.OllamaModel? Type765 { get; set; } /// /// /// - public global::Opik.Optimization? Type766 { get; set; } + public global::Opik.OllamaInstanceBaseUrlRequest? Type766 { get; set; } /// /// /// - public global::Opik.OptimizationStatus? Type767 { get; set; } + public global::Opik.OllamaConnectionTestResponse? Type767 { get; set; } /// /// /// - public global::Opik.OptimizationStudioConfig? Type768 { get; set; } + public global::Opik.Optimization? Type768 { get; set; } /// /// /// - public global::Opik.StudioPrompt? Type769 { get; set; } + public global::Opik.OptimizationStatus? Type769 { get; set; } /// /// /// - public global::Opik.StudioLlmModel? Type770 { get; set; } + public global::Opik.OptimizationStudioConfig? Type770 { get; set; } /// /// /// - public global::Opik.StudioEvaluation? Type771 { get; set; } + public global::Opik.StudioPrompt? Type771 { get; set; } /// /// /// - public global::Opik.StudioOptimizer? Type772 { get; set; } + public global::Opik.StudioLlmModel? Type772 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type773 { get; set; } + public global::Opik.StudioEvaluation? Type773 { get; set; } /// /// /// - public global::Opik.StudioMetric? Type774 { get; set; } + public global::Opik.StudioOptimizer? Type774 { get; set; } /// /// /// - public global::Opik.StudioMessage? Type775 { get; set; } + public global::System.Collections.Generic.IList? Type775 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type776 { get; set; } + public global::Opik.StudioMetric? Type776 { get; set; } /// /// /// - public global::Opik.OptimizationStudioConfigWrite? Type777 { get; set; } + public global::Opik.StudioMessage? Type777 { get; set; } /// /// /// - public global::Opik.StudioPromptWrite? Type778 { get; set; } + public global::System.Collections.Generic.IList? Type778 { get; set; } /// /// /// - public global::Opik.StudioLlmModelWrite? Type779 { get; set; } + public global::Opik.OptimizationStudioConfigWrite? Type779 { get; set; } /// /// /// - public global::Opik.StudioEvaluationWrite? Type780 { get; set; } + public global::Opik.StudioPromptWrite? Type780 { get; set; } /// /// /// - public global::Opik.StudioOptimizerWrite? Type781 { get; set; } + public global::Opik.StudioLlmModelWrite? Type781 { get; set; } /// /// /// - public global::Opik.OptimizationWrite? Type782 { get; set; } + public global::Opik.StudioEvaluationWrite? Type782 { get; set; } /// /// /// - public global::Opik.OptimizationWriteStatus? Type783 { get; set; } + public global::Opik.StudioOptimizerWrite? Type783 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type784 { get; set; } + public global::Opik.OptimizationWrite? Type784 { get; set; } /// /// /// - public global::Opik.StudioMetricWrite? Type785 { get; set; } + public global::Opik.OptimizationWriteStatus? Type785 { get; set; } /// /// /// - public global::Opik.StudioMessageWrite? Type786 { get; set; } + public global::System.Collections.Generic.IList? Type786 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type787 { get; set; } + public global::Opik.StudioMetricWrite? Type787 { get; set; } /// /// /// - public global::Opik.OptimizationPagePublic? Type788 { get; set; } + public global::Opik.StudioMessageWrite? Type788 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type789 { get; set; } + public global::System.Collections.Generic.IList? Type789 { get; set; } /// /// /// - public global::Opik.OptimizationPublic? Type790 { get; set; } + public global::Opik.OptimizationPagePublic? Type790 { get; set; } /// /// /// - public global::Opik.OptimizationStudioConfigPublic? Type791 { get; set; } + public global::System.Collections.Generic.IList? Type791 { get; set; } /// /// /// - public global::Opik.StudioPromptPublic? Type792 { get; set; } + public global::Opik.OptimizationPublic? Type792 { get; set; } /// /// /// - public global::Opik.StudioLlmModelPublic? Type793 { get; set; } + public global::Opik.OptimizationStudioConfigPublic? Type793 { get; set; } /// /// /// - public global::Opik.StudioEvaluationPublic? Type794 { get; set; } + public global::Opik.StudioPromptPublic? Type794 { get; set; } /// /// /// - public global::Opik.StudioOptimizerPublic? Type795 { get; set; } + public global::Opik.StudioLlmModelPublic? Type795 { get; set; } /// /// /// - public global::Opik.OptimizationPublicStatus? Type796 { get; set; } + public global::Opik.StudioEvaluationPublic? Type796 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type797 { get; set; } + public global::Opik.StudioOptimizerPublic? Type797 { get; set; } /// /// /// - public global::Opik.StudioMetricPublic? Type798 { get; set; } + public global::Opik.OptimizationPublicStatus? Type798 { get; set; } /// /// /// - public global::Opik.StudioMessagePublic? Type799 { get; set; } + public global::System.Collections.Generic.IList? Type799 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type800 { get; set; } + public global::Opik.StudioMetricPublic? Type800 { get; set; } /// /// /// - public global::Opik.OptimizationStudioLog? Type801 { get; set; } + public global::Opik.StudioMessagePublic? Type801 { get; set; } /// /// /// - public global::Opik.OptimizationUpdate? Type802 { get; set; } + public global::System.Collections.Generic.IList? Type802 { get; set; } /// /// /// - public global::Opik.OptimizationUpdateStatus? Type803 { get; set; } + public global::Opik.OptimizationStudioLog? Type803 { get; set; } /// /// /// - public global::Opik.ActivateRequest? Type804 { get; set; } + public global::Opik.OptimizationUpdate? Type804 { get; set; } /// /// /// - public global::Opik.CreateSessionResponse? Type805 { get; set; } + public global::Opik.OptimizationUpdateStatus? Type805 { get; set; } /// /// /// - public global::Opik.CreateSessionRequest? Type806 { get; set; } + public global::Opik.ActivateRequest? Type806 { get; set; } /// /// /// - public global::Opik.CreateSessionRequestType? Type807 { get; set; } + public global::Opik.CreateSessionResponse? Type807 { get; set; } /// /// /// - public global::Opik.PromptPagePublic? Type808 { get; set; } + public global::Opik.CreateSessionRequest? Type808 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type809 { get; set; } + public global::Opik.CreateSessionRequestType? Type809 { get; set; } /// /// /// - public global::Opik.PromptPublic? Type810 { get; set; } + public global::Opik.PromptPagePublic? Type810 { get; set; } /// /// /// - public global::Opik.PromptPublicTemplateStructure? Type811 { get; set; } + public global::System.Collections.Generic.IList? Type811 { get; set; } /// /// /// - public global::Opik.ErrorCountWithDeviation? Type812 { get; set; } + public global::Opik.PromptPublic? Type812 { get; set; } /// /// /// - public global::Opik.Project? Type813 { get; set; } + public global::Opik.PromptPublicTemplateStructure? Type813 { get; set; } /// /// /// - public global::Opik.ProjectVisibility? Type814 { get; set; } + public global::Opik.ErrorCountWithDeviation? Type814 { get; set; } /// /// /// - public global::Opik.ProjectWrite? Type815 { get; set; } + public global::Opik.Project? Type815 { get; set; } /// /// /// - public global::Opik.ProjectWriteVisibility? Type816 { get; set; } + public global::Opik.ProjectVisibility? Type816 { get; set; } /// /// /// - public global::Opik.ProjectPagePublic? Type817 { get; set; } + public global::Opik.ProjectWrite? Type817 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type818 { get; set; } + public global::Opik.ProjectWriteVisibility? Type818 { get; set; } /// /// /// - public global::Opik.ProjectPublic? Type819 { get; set; } + public global::Opik.ProjectPagePublic? Type819 { get; set; } /// /// /// - public global::Opik.ProjectPublicVisibility? Type820 { get; set; } + public global::System.Collections.Generic.IList? Type820 { get; set; } /// /// /// - public global::Opik.FeedbackScoreNames? Type821 { get; set; } + public global::Opik.ProjectPublic? Type821 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type822 { get; set; } + public global::Opik.ProjectPublicVisibility? Type822 { get; set; } /// /// /// - public global::Opik.ScoreName? Type823 { get; set; } + public global::Opik.FeedbackScoreNames? Type823 { get; set; } /// /// /// - public global::Opik.TokenUsageNames? Type824 { get; set; } + public global::System.Collections.Generic.IList? Type824 { get; set; } /// /// /// - public global::Opik.KpiCardResponse? Type825 { get; set; } + public global::Opik.ScoreName? Type825 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type826 { get; set; } + public global::Opik.TokenUsageNames? Type826 { get; set; } /// /// /// - public global::Opik.KpiMetric? Type827 { get; set; } + public global::Opik.KpiCardResponse? Type827 { get; set; } /// /// /// - public global::Opik.KpiMetricType? Type828 { get; set; } + public global::System.Collections.Generic.IList? Type828 { get; set; } /// /// /// - public global::Opik.KpiCardRequest? Type829 { get; set; } + public global::Opik.KpiMetric? Type829 { get; set; } /// /// /// - public global::Opik.KpiCardRequestEntityType? Type830 { get; set; } + public global::Opik.KpiMetricType? Type830 { get; set; } /// /// /// - public global::Opik.DataPointNumberPublic? Type831 { get; set; } + public global::Opik.KpiCardRequest? Type831 { get; set; } /// /// /// - public global::Opik.ProjectMetricResponsePublic? Type832 { get; set; } + public global::Opik.KpiCardRequestEntityType? Type832 { get; set; } /// /// /// - public global::Opik.ProjectMetricResponsePublicMetricType? Type833 { get; set; } + public global::Opik.DataPointNumberPublic? Type833 { get; set; } /// /// /// - public global::Opik.ProjectMetricResponsePublicInterval? Type834 { get; set; } + public global::Opik.ProjectMetricResponsePublic? Type834 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type835 { get; set; } + public global::Opik.ProjectMetricResponsePublicMetricType? Type835 { get; set; } /// /// /// - public global::Opik.ResultsNumberPublic? Type836 { get; set; } + public global::Opik.ProjectMetricResponsePublicInterval? Type836 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type837 { get; set; } + public global::System.Collections.Generic.IList? Type837 { get; set; } /// /// /// - public global::Opik.BreakdownConfigPublic? Type838 { get; set; } + public global::Opik.ResultsNumberPublic? Type838 { get; set; } /// /// /// - public global::Opik.BreakdownConfigPublicField? Type839 { get; set; } + public global::System.Collections.Generic.IList? Type839 { get; set; } /// /// /// - public global::Opik.ProjectMetricRequestPublic? Type840 { get; set; } + public global::Opik.BreakdownConfigPublic? Type840 { get; set; } /// /// /// - public global::Opik.ProjectMetricRequestPublicMetricType? Type841 { get; set; } + public global::Opik.BreakdownConfigPublicField? Type841 { get; set; } /// /// /// - public global::Opik.ProjectMetricRequestPublicInterval? Type842 { get; set; } + public global::Opik.ProjectMetricRequestPublic? Type842 { get; set; } /// /// /// - public global::Opik.ProjectStatsSummary? Type843 { get; set; } + public global::Opik.ProjectMetricRequestPublicMetricType? Type843 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type844 { get; set; } + public global::Opik.ProjectMetricRequestPublicInterval? Type844 { get; set; } /// /// /// - public global::Opik.ProjectStatsSummaryItem? Type845 { get; set; } + public global::Opik.ProjectStatsSummary? Type845 { get; set; } /// /// /// - public global::Opik.ErrorCountWithDeviationDetailed? Type846 { get; set; } + public global::System.Collections.Generic.IList? Type846 { get; set; } /// /// /// - public global::Opik.FeedbackScoreAverageDetailed? Type847 { get; set; } + public global::Opik.ProjectStatsSummaryItem? Type847 { get; set; } /// /// /// - public global::Opik.PercentageValuesDetailed? Type848 { get; set; } + public global::Opik.ErrorCountWithDeviationDetailed? Type848 { get; set; } /// /// /// - public global::Opik.ProjectDetailed? Type849 { get; set; } + public global::Opik.FeedbackScoreAverageDetailed? Type849 { get; set; } /// /// /// - public global::Opik.ProjectDetailedVisibility? Type850 { get; set; } + public global::Opik.PercentageValuesDetailed? Type850 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type851 { get; set; } + public global::Opik.ProjectDetailed? Type851 { get; set; } /// /// /// - public global::Opik.ErrorMessageDetailed? Type852 { get; set; } + public global::Opik.ProjectDetailedVisibility? Type852 { get; set; } /// /// /// - public global::Opik.ProjectRetrieveDetailed? Type853 { get; set; } + public global::System.Collections.Generic.IList? Type853 { get; set; } /// /// /// - public global::Opik.ProjectUpdate? Type854 { get; set; } + public global::Opik.ErrorMessageDetailed? Type854 { get; set; } /// /// /// - public global::Opik.ProjectUpdateVisibility? Type855 { get; set; } + public global::Opik.ProjectRetrieveDetailed? Type855 { get; set; } /// /// /// - public global::Opik.Prompt? Type856 { get; set; } + public global::Opik.ProjectUpdate? Type856 { get; set; } /// /// /// - public global::Opik.PromptType? Type857 { get; set; } + public global::Opik.ProjectUpdateVisibility? Type857 { get; set; } /// /// /// - public global::Opik.PromptTemplateStructure? Type858 { get; set; } + public global::Opik.Prompt? Type858 { get; set; } /// /// /// - public global::Opik.PromptVersion? Type859 { get; set; } + public global::Opik.PromptType? Type859 { get; set; } /// /// /// - public global::Opik.PromptVersionType? Type860 { get; set; } + public global::Opik.PromptTemplateStructure? Type860 { get; set; } /// /// /// - public global::Opik.PromptVersionVersionType? Type861 { get; set; } + public global::Opik.PromptVersion? Type861 { get; set; } /// /// /// - public global::Opik.PromptVersionTemplateStructure? Type862 { get; set; } + public global::Opik.PromptVersionType? Type862 { get; set; } /// /// /// - public global::Opik.PromptWrite? Type863 { get; set; } + public global::Opik.PromptVersionVersionType? Type863 { get; set; } /// /// /// - public global::Opik.PromptWriteType? Type864 { get; set; } + public global::Opik.PromptVersionTemplateStructure? Type864 { get; set; } /// /// /// - public global::Opik.PromptWriteTemplateStructure? Type865 { get; set; } + public global::Opik.PromptWrite? Type865 { get; set; } /// /// /// - public global::Opik.JsonNodeDetail? Type866 { get; set; } + public global::Opik.PromptWriteType? Type866 { get; set; } /// /// /// - public global::Opik.PromptVersionDetail? Type867 { get; set; } + public global::Opik.PromptWriteTemplateStructure? Type867 { get; set; } /// /// /// - public global::Opik.PromptVersionDetailType? Type868 { get; set; } + public global::Opik.JsonNodeDetail? Type868 { get; set; } /// /// /// - public global::Opik.PromptVersionDetailVersionType? Type869 { get; set; } + public global::Opik.PromptVersionDetail? Type869 { get; set; } /// /// /// - public global::Opik.PromptVersionDetailTemplateStructure? Type870 { get; set; } + public global::Opik.PromptVersionDetailType? Type870 { get; set; } /// /// /// - public global::Opik.ErrorMessageDetail? Type871 { get; set; } + public global::Opik.PromptVersionDetailVersionType? Type871 { get; set; } /// /// /// - public global::Opik.CreatePromptVersionDetail? Type872 { get; set; } + public global::Opik.PromptVersionDetailTemplateStructure? Type872 { get; set; } /// /// /// - public global::Opik.CreatePromptVersionDetailTemplateStructure? Type873 { get; set; } + public global::Opik.ErrorMessageDetail? Type873 { get; set; } /// /// /// - public global::Opik.PromptDetail? Type874 { get; set; } + public global::Opik.CreatePromptVersionDetail? Type874 { get; set; } /// /// /// - public global::Opik.PromptDetailTemplateStructure? Type875 { get; set; } + public global::Opik.CreatePromptVersionDetailTemplateStructure? Type875 { get; set; } /// /// /// - public global::Opik.PromptVersionPagePublic? Type876 { get; set; } + public global::Opik.PromptDetail? Type876 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type877 { get; set; } + public global::Opik.PromptDetailTemplateStructure? Type877 { get; set; } /// /// /// - public global::Opik.PromptVersionPublic? Type878 { get; set; } + public global::Opik.PromptVersionPagePublic? Type878 { get; set; } /// /// /// - public global::Opik.PromptVersionPublicType? Type879 { get; set; } + public global::System.Collections.Generic.IList? Type879 { get; set; } /// /// /// - public global::Opik.PromptVersionPublicVersionType? Type880 { get; set; } + public global::Opik.PromptVersionPublic? Type880 { get; set; } /// /// /// - public global::Opik.PromptVersionPublicTemplateStructure? Type881 { get; set; } + public global::Opik.PromptVersionPublicType? Type881 { get; set; } /// /// /// - public global::Opik.PromptVersionCommitsRequestPublic? Type882 { get; set; } + public global::Opik.PromptVersionPublicVersionType? Type882 { get; set; } /// /// /// - public global::Opik.PromptVersionRetrieveDetail? Type883 { get; set; } + public global::Opik.PromptVersionPublicTemplateStructure? Type883 { get; set; } /// /// /// - public global::Opik.PromptVersionIdsRequestDetail? Type884 { get; set; } + public global::Opik.PromptVersionCommitsRequestPublic? Type884 { get; set; } /// /// /// - public global::Opik.PromptVersionEnvironmentUpdate? Type885 { get; set; } + public global::Opik.PromptVersionRetrieveDetail? Type885 { get; set; } /// /// /// - public global::Opik.PromptUpdatable? Type886 { get; set; } + public global::Opik.PromptVersionIdsRequestDetail? Type886 { get; set; } /// /// /// - public global::Opik.PromptVersionBatchUpdate? Type887 { get; set; } + public global::Opik.PromptVersionEnvironmentUpdate? Type887 { get; set; } /// /// /// - public global::Opik.PromptVersionUpdate? Type888 { get; set; } + public global::Opik.PromptUpdatable? Type888 { get; set; } /// /// /// - public global::Opik.RecentActivityItemPublic? Type889 { get; set; } + public global::Opik.PromptVersionBatchUpdate? Type889 { get; set; } /// /// /// - public global::Opik.RecentActivityItemPublicType? Type890 { get; set; } + public global::Opik.PromptVersionUpdate? Type890 { get; set; } /// /// /// - public global::Opik.RecentActivityPagePublic? Type891 { get; set; } + public global::Opik.RecentActivityItemPublic? Type891 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type892 { get; set; } + public global::Opik.RecentActivityItemPublicType? Type892 { get; set; } /// /// /// - public global::Opik.ReportCompleteRequest? Type893 { get; set; } + public global::Opik.RecentActivityPagePublic? Type893 { get; set; } /// /// /// - public global::Opik.ReportCompleteRequestStatus? Type894 { get; set; } + public global::System.Collections.Generic.IList? Type894 { get; set; } /// /// /// - public global::Opik.GenerateReportResponse? Type895 { get; set; } + public global::Opik.ReportCompleteRequest? Type895 { get; set; } /// /// /// - public global::Opik.ReportPreference? Type896 { get; set; } + public global::Opik.ReportCompleteRequestStatus? Type896 { get; set; } /// /// /// - public global::Opik.OllieReport? Type897 { get; set; } + public global::Opik.GenerateReportResponse? Type897 { get; set; } /// /// /// - public global::Opik.OllieReportStatus? Type898 { get; set; } + public global::Opik.ReportPreference? Type898 { get; set; } /// /// /// - public global::Opik.OllieReportPage? Type899 { get; set; } + public global::Opik.OllieReport? Type899 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type900 { get; set; } + public global::Opik.OllieReportStatus? Type900 { get; set; } /// /// /// - public global::Opik.RetentionRulePublic? Type901 { get; set; } + public global::Opik.OllieReportPage? Type901 { get; set; } /// /// /// - public global::Opik.RetentionRulePublicLevel? Type902 { get; set; } + public global::System.Collections.Generic.IList? Type902 { get; set; } /// /// /// - public global::Opik.RetentionRulePublicRetention? Type903 { get; set; } + public global::Opik.RetentionRulePublic? Type903 { get; set; } /// /// /// - public global::Opik.RetentionRuleWrite? Type904 { get; set; } + public global::Opik.RetentionRulePublicLevel? Type904 { get; set; } /// /// /// - public global::Opik.RetentionRuleWriteRetention? Type905 { get; set; } + public global::Opik.RetentionRulePublicRetention? Type905 { get; set; } /// /// /// - public global::Opik.RetentionRulePagePublic? Type906 { get; set; } + public global::Opik.RetentionRuleWrite? Type906 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type907 { get; set; } + public global::Opik.RetentionRuleWriteRetention? Type907 { get; set; } /// /// /// - public global::Opik.ServiceTogglesConfig? Type908 { get; set; } + public global::Opik.RetentionRulePagePublic? Type908 { get; set; } /// /// /// - public global::Opik.SpanBatchUpdate? Type909 { get; set; } + public global::System.Collections.Generic.IList? Type909 { get; set; } /// /// /// - public global::Opik.SpanUpdate? Type910 { get; set; } + public global::Opik.ServiceTogglesConfig? Type910 { get; set; } /// /// /// - public global::Opik.SpanUpdateType? Type911 { get; set; } + public global::Opik.SpanBatchUpdate? Type911 { get; set; } /// /// /// - public global::Opik.SpanUpdateSource? Type912 { get; set; } + public global::Opik.SpanUpdate? Type912 { get; set; } /// /// /// - public global::Opik.ErrorInfoWrite? Type913 { get; set; } + public global::Opik.SpanUpdateType? Type913 { get; set; } /// /// /// - public global::Opik.SpanWrite? Type914 { get; set; } + public global::Opik.SpanUpdateSource? Type914 { get; set; } /// /// /// - public global::Opik.SpanWriteType? Type915 { get; set; } + public global::Opik.ErrorInfoWrite? Type915 { get; set; } /// /// /// - public global::Opik.SpanWriteSource? Type916 { get; set; } + public global::Opik.SpanWrite? Type916 { get; set; } /// /// /// - public global::Opik.SpanBatch? Type917 { get; set; } + public global::Opik.SpanWriteType? Type917 { get; set; } /// /// /// - public global::Opik.SpanBatchWrite? Type918 { get; set; } + public global::Opik.SpanWriteSource? Type918 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type919 { get; set; } + public global::Opik.SpanBatch? Type919 { get; set; } /// /// /// - public global::Opik.DeleteFeedbackScore? Type920 { get; set; } + public global::Opik.SpanBatchWrite? Type920 { get; set; } /// /// /// - public global::Opik.ErrorInfoPublic? Type921 { get; set; } + public global::System.Collections.Generic.IList? Type921 { get; set; } /// /// /// - public global::Opik.FeedbackScorePublic? Type922 { get; set; } + public global::Opik.DeleteFeedbackScore? Type922 { get; set; } /// /// /// - public global::Opik.FeedbackScorePublicSource? Type923 { get; set; } + public global::Opik.ErrorInfoPublic? Type923 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary? Type924 { get; set; } + public global::Opik.FeedbackScorePublic? Type924 { get; set; } /// /// /// - public global::Opik.ValueEntryPublic? Type925 { get; set; } + public global::Opik.FeedbackScorePublicSource? Type925 { get; set; } /// /// /// - public global::Opik.SpanPublic? Type926 { get; set; } + public global::System.Collections.Generic.Dictionary? Type926 { get; set; } /// /// /// - public global::Opik.SpanPublicType? Type927 { get; set; } + public global::Opik.ValueEntryPublic? Type927 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type928 { get; set; } + public global::Opik.SpanPublic? Type928 { get; set; } /// /// /// - public global::Opik.SpanPublicSource? Type929 { get; set; } + public global::Opik.SpanPublicType? Type929 { get; set; } /// /// /// - public global::Opik.ValueEntryPublicSource? Type930 { get; set; } + public global::System.Collections.Generic.IList? Type930 { get; set; } /// /// /// - public global::Opik.SpanPagePublic? Type931 { get; set; } + public global::Opik.SpanPublicSource? Type931 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type932 { get; set; } + public global::Opik.ValueEntryPublicSource? Type932 { get; set; } /// /// /// - public global::Opik.FeedbackScoreBatch? Type933 { get; set; } + public global::Opik.SpanPagePublic? Type933 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type934 { get; set; } + public global::System.Collections.Generic.IList? Type934 { get; set; } /// /// /// - public global::Opik.FeedbackScoreBatchItem? Type935 { get; set; } + public global::Opik.FeedbackScoreBatch? Type935 { get; set; } /// /// /// - public global::Opik.FeedbackScoreBatchItemSource? Type936 { get; set; } + public global::System.Collections.Generic.IList? Type936 { get; set; } /// /// /// - public global::Opik.SpanSearchStreamRequestPublic? Type937 { get; set; } + public global::Opik.FeedbackScoreBatchItem? Type937 { get; set; } /// /// /// - public global::Opik.SpanSearchStreamRequestPublicType? Type938 { get; set; } + public global::Opik.FeedbackScoreBatchItemSource? Type938 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type939 { get; set; } + public global::Opik.SpanSearchStreamRequestPublic? Type939 { get; set; } /// /// /// - public global::Opik.SpanSearchStreamRequestPublicExcludeItem? Type940 { get; set; } + public global::Opik.SpanSearchStreamRequestPublicType? Type940 { get; set; } /// /// /// - public global::Opik.TraceBatchUpdate? Type941 { get; set; } + public global::System.Collections.Generic.IList? Type941 { get; set; } /// /// /// - public global::Opik.TraceUpdate? Type942 { get; set; } + public global::Opik.SpanSearchStreamRequestPublicExcludeItem? Type942 { get; set; } /// /// /// - public global::Opik.TraceUpdateSource? Type943 { get; set; } + public global::Opik.TraceBatchUpdate? Type943 { get; set; } /// /// /// - public global::Opik.TraceThreadBatchUpdate? Type944 { get; set; } + public global::Opik.TraceUpdate? Type944 { get; set; } /// /// /// - public global::Opik.TraceThreadUpdate? Type945 { get; set; } + public global::Opik.TraceUpdateSource? Type945 { get; set; } /// /// /// - public global::Opik.TraceThreadBatchIdentifier? Type946 { get; set; } + public global::Opik.TraceThreadBatchUpdate? Type946 { get; set; } /// /// /// - public global::Opik.TraceWrite? Type947 { get; set; } + public global::Opik.TraceThreadUpdate? Type947 { get; set; } /// /// /// - public global::Opik.TraceWriteSource? Type948 { get; set; } + public global::Opik.TraceThreadBatchIdentifier? Type948 { get; set; } /// /// /// - public global::Opik.TraceBatch? Type949 { get; set; } + public global::Opik.TraceWrite? Type949 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type950 { get; set; } + public global::Opik.TraceWriteSource? Type950 { get; set; } /// /// /// - public global::Opik.TraceBatchWrite? Type951 { get; set; } + public global::Opik.TraceBatch? Type951 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type952 { get; set; } + public global::System.Collections.Generic.IList? Type952 { get; set; } /// /// /// - public global::Opik.DeleteThreadFeedbackScores? Type953 { get; set; } + public global::Opik.TraceBatchWrite? Type953 { get; set; } /// /// /// - public global::Opik.DeleteTraceThreads? Type954 { get; set; } + public global::System.Collections.Generic.IList? Type954 { get; set; } /// /// /// - public global::Opik.BatchDeleteByProject? Type955 { get; set; } + public global::Opik.DeleteThreadFeedbackScores? Type955 { get; set; } /// /// /// - public global::Opik.CheckPublic? Type956 { get; set; } + public global::Opik.DeleteTraceThreads? Type956 { get; set; } /// /// /// - public global::Opik.CheckPublicName? Type957 { get; set; } + public global::Opik.BatchDeleteByProject? Type957 { get; set; } /// /// /// - public global::Opik.CheckPublicResult? Type958 { get; set; } + public global::Opik.CheckPublic? Type958 { get; set; } /// /// /// - public global::Opik.ExperimentItemReferencePublic? Type959 { get; set; } + public global::Opik.CheckPublicName? Type959 { get; set; } /// /// /// - public global::Opik.GuardrailsValidationPublic? Type960 { get; set; } + public global::Opik.CheckPublicResult? Type960 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type961 { get; set; } + public global::Opik.ExperimentItemReferencePublic? Type961 { get; set; } /// /// /// - public global::Opik.TracePublic? Type962 { get; set; } + public global::Opik.GuardrailsValidationPublic? Type962 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type963 { get; set; } + public global::System.Collections.Generic.IList? Type963 { get; set; } /// /// /// - public global::Opik.TracePublicVisibilityMode? Type964 { get; set; } + public global::Opik.TracePublic? Type964 { get; set; } /// /// /// - public global::Opik.TracePublicSource? Type965 { get; set; } + public global::System.Collections.Generic.IList? Type965 { get; set; } /// /// /// - public global::Opik.TraceThread? Type966 { get; set; } + public global::Opik.TracePublicVisibilityMode? Type966 { get; set; } /// /// /// - public global::Opik.TraceThreadStatus? Type967 { get; set; } + public global::Opik.TracePublicSource? Type967 { get; set; } /// /// /// - public global::Opik.TraceThreadIdentifier? Type968 { get; set; } + public global::Opik.TraceThread? Type968 { get; set; } /// /// /// - public global::Opik.TraceThreadPage? Type969 { get; set; } + public global::Opik.TraceThreadStatus? Type969 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type970 { get; set; } + public global::Opik.TraceThreadIdentifier? Type970 { get; set; } /// /// /// - public global::Opik.TracePagePublic? Type971 { get; set; } + public global::Opik.TraceThreadPage? Type971 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type972 { get; set; } + public global::System.Collections.Generic.IList? Type972 { get; set; } /// /// /// - public global::Opik.FeedbackScoreBatchItemThread? Type973 { get; set; } + public global::Opik.TracePagePublic? Type973 { get; set; } /// /// /// - public global::Opik.FeedbackScoreBatchItemThreadSource? Type974 { get; set; } + public global::System.Collections.Generic.IList? Type974 { get; set; } /// /// /// - public global::Opik.FeedbackScoreBatchThread? Type975 { get; set; } + public global::Opik.FeedbackScoreBatchItemThread? Type975 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type976 { get; set; } + public global::Opik.FeedbackScoreBatchItemThreadSource? Type976 { get; set; } /// /// /// - public global::Opik.TraceThreadSearchStreamRequest? Type977 { get; set; } + public global::Opik.FeedbackScoreBatchThread? Type977 { get; set; } /// /// /// - public global::Opik.TraceSearchStreamRequestPublic? Type978 { get; set; } + public global::System.Collections.Generic.IList? Type978 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type979 { get; set; } + public global::Opik.TraceThreadSearchStreamRequest? Type979 { get; set; } /// /// /// - public global::Opik.TraceSearchStreamRequestPublicExcludeItem? Type980 { get; set; } + public global::Opik.TraceSearchStreamRequestPublic? Type980 { get; set; } /// /// /// - public global::Opik.WelcomeWizardTracking? Type981 { get; set; } + public global::System.Collections.Generic.IList? Type981 { get; set; } /// /// /// - public global::Opik.WelcomeWizardSubmission? Type982 { get; set; } + public global::Opik.TraceSearchStreamRequestPublicExcludeItem? Type982 { get; set; } /// /// /// - public global::Opik.Permission? Type983 { get; set; } + public global::Opik.WelcomeWizardTracking? Type983 { get; set; } /// /// /// - public global::Opik.WorkspaceUserPermissions? Type984 { get; set; } + public global::Opik.WelcomeWizardSubmission? Type984 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type985 { get; set; } + public global::Opik.Permission? Type985 { get; set; } /// /// /// - public global::Opik.WorkspaceMetricsSummaryRequest? Type986 { get; set; } + public global::Opik.WorkspaceUserPermissions? Type986 { get; set; } /// /// /// - public global::Opik.DataPointDouble? Type987 { get; set; } + public global::System.Collections.Generic.IList? Type987 { get; set; } /// /// /// - public global::Opik.WorkspaceMetricResponse? Type988 { get; set; } + public global::Opik.WorkspaceMetricsSummaryRequest? Type988 { get; set; } /// /// /// - public global::Opik.WorkspaceMetricRequest? Type989 { get; set; } + public global::Opik.DataPointDouble? Type989 { get; set; } /// /// /// - public global::Opik.WorkspaceConfiguration? Type990 { get; set; } + public global::Opik.WorkspaceMetricResponse? Type990 { get; set; } /// /// /// - public global::Opik.WorkspaceVersion? Type991 { get; set; } + public global::Opik.WorkspaceMetricRequest? Type991 { get; set; } /// /// /// - public global::Opik.WorkspaceVersionOpikVersion? Type992 { get; set; } + public global::Opik.WorkspaceConfiguration? Type992 { get; set; } /// /// /// - public global::Opik.WorkspaceMetricsSummaryResponse? Type993 { get; set; } + public global::Opik.WorkspaceVersion? Type993 { get; set; } /// /// /// - public global::Opik.RevokeRequest? Type994 { get; set; } + public global::Opik.WorkspaceVersionOpikVersion? Type994 { get; set; } /// /// /// - public global::Opik.TokenRequest? Type995 { get; set; } + public global::Opik.WorkspaceMetricsSummaryResponse? Type995 { get; set; } /// /// /// - public global::Opik.CreateDatasetItemsFromCsvRequest? Type996 { get; set; } + public global::Opik.RevokeRequest? Type996 { get; set; } /// /// /// - public global::Opik.CreateDatasetItemsFromJsonRequest? Type997 { get; set; } + public global::Opik.TokenRequest? Type997 { get; set; } /// /// /// - public global::Opik.CreateDatasetItemsFromJsonRequestFormat? Type998 { get; set; } + public global::Opik.CreateDatasetItemsFromCsvRequest? Type998 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type999 { get; set; } + public global::Opik.CreateDatasetItemsFromJsonRequest? Type999 { get; set; } /// /// /// - public global::Opik.FindAgentInsightsIssuesStatus? Type1000 { get; set; } + public global::Opik.CreateDatasetItemsFromJsonRequestFormat? Type1000 { get; set; } /// /// /// - public global::Opik.FindAgentInsightsIssuesSeverity? Type1001 { get; set; } + public global::System.Collections.Generic.IList? Type1001 { get; set; } /// /// /// - public global::Opik.GetWebhookExamplesAlertType? Type1002 { get; set; } + public global::Opik.FindAgentInsightsIssuesStatus? Type1002 { get; set; } /// /// /// - public global::Opik.AttachmentListEntityType? Type1003 { get; set; } + public global::Opik.FindAgentInsightsIssuesSeverity? Type1003 { get; set; } /// /// /// - public global::Opik.DownloadAttachmentEntityType? Type1004 { get; set; } + public global::Opik.GetWebhookExamplesAlertType? Type1004 { get; set; } /// /// /// - public global::Opik.UploadAttachmentEntityType? Type1005 { get; set; } + public global::Opik.AttachmentListEntityType? Type1005 { get; set; } /// /// /// - public global::Opik.FindFeedbackDefinitionsType? Type1006 { get; set; } + public global::Opik.DownloadAttachmentEntityType? Type1006 { get; set; } /// /// /// - public global::Opik.ListRunnersStatus? Type1007 { get; set; } + public global::Opik.UploadAttachmentEntityType? Type1007 { get; set; } /// /// /// - public global::Opik.GetSpansByProjectType? Type1008 { get; set; } + public global::Opik.FindFeedbackDefinitionsType? Type1008 { get; set; } /// /// /// - public global::Opik.FindFeedbackScoreNames1Type? Type1009 { get; set; } + public global::Opik.ListRunnersStatus? Type1009 { get; set; } /// /// /// - public global::Opik.GetSpanStatsType? Type1010 { get; set; } + public global::Opik.GetSpansByProjectType? Type1010 { get; set; } /// /// /// - public byte[]? Type1011 { get; set; } + public global::Opik.FindFeedbackScoreNames1Type? Type1011 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1012 { get; set; } + public global::Opik.GetSpanStatsType? Type1012 { get; set; } /// /// /// - public global::Opik.AnyOf? Type1013 { get; set; } + public byte[]? Type1013 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1014 { get; set; } + public global::System.Collections.Generic.IList>? Type1014 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1015 { get; set; } + public global::Opik.AnyOf? Type1015 { get; set; } /// /// /// - public global::Opik.AnyOf? Type1016 { get; set; } + public global::System.Collections.Generic.IList? Type1016 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1017 { get; set; } + public global::System.Collections.Generic.IList>? Type1017 { get; set; } /// /// /// - public global::Opik.AnyOf? Type1018 { get; set; } + public global::Opik.AnyOf? Type1018 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1019 { get; set; } + public global::System.Collections.Generic.IList>? Type1019 { get; set; } /// /// /// - public global::Opik.AnyOf? Type1020 { get; set; } + public global::Opik.AnyOf? Type1020 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1021 { get; set; } + public global::System.Collections.Generic.IList>? Type1021 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type1022 { get; set; } + public global::Opik.AnyOf? Type1022 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1023 { get; set; } + public global::System.Collections.Generic.IList? Type1023 { get; set; } /// /// /// - public global::Opik.AnyOf? Type1024 { get; set; } + public global::System.Collections.Generic.IList? Type1024 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1025 { get; set; } + public global::System.Collections.Generic.IList>? Type1025 { get; set; } /// /// /// - public global::Opik.AnyOf? Type1026 { get; set; } + public global::Opik.AnyOf? Type1026 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type1027 { get; set; } + public global::System.Collections.Generic.IList>? Type1027 { get; set; } /// /// /// - public global::Opik.AnyOf? Type1028 { get; set; } + public global::Opik.AnyOf? Type1028 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.IList>? Type1029 { get; set; } + /// + /// + /// + public global::Opik.AnyOf? Type1030 { get; set; } /// /// @@ -4209,626 +4217,630 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType16 { get; set; } + public global::System.Collections.Generic.List? ListType16 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.List? ListType17 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType17 { get; set; } + public global::System.Collections.Generic.List? ListType18 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType18 { get; set; } + public global::System.Collections.Generic.List? ListType19 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType19 { get; set; } + public global::System.Collections.Generic.List? ListType20 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType20 { get; set; } + public global::System.Collections.Generic.List? ListType21 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType21 { get; set; } + public global::System.Collections.Generic.List? ListType22 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType22 { get; set; } + public global::System.Collections.Generic.List? ListType23 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType23 { get; set; } + public global::System.Collections.Generic.List? ListType24 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType24 { get; set; } + public global::System.Collections.Generic.List? ListType25 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType25 { get; set; } + public global::System.Collections.Generic.List? ListType26 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType26 { get; set; } + public global::System.Collections.Generic.List? ListType27 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType27 { get; set; } + public global::System.Collections.Generic.List? ListType28 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType28 { get; set; } + public global::System.Collections.Generic.List? ListType29 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType29 { get; set; } + public global::System.Collections.Generic.List? ListType30 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType30 { get; set; } + public global::System.Collections.Generic.List? ListType31 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType31 { get; set; } + public global::System.Collections.Generic.List? ListType32 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType32 { get; set; } + public global::System.Collections.Generic.List? ListType33 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType33 { get; set; } + public global::System.Collections.Generic.List? ListType34 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType34 { get; set; } + public global::System.Collections.Generic.List? ListType35 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType35 { get; set; } + public global::System.Collections.Generic.List? ListType36 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType36 { get; set; } + public global::System.Collections.Generic.List? ListType37 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType37 { get; set; } + public global::System.Collections.Generic.List? ListType38 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType38 { get; set; } + public global::System.Collections.Generic.List? ListType39 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType39 { get; set; } + public global::System.Collections.Generic.List? ListType40 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType40 { get; set; } + public global::System.Collections.Generic.List? ListType41 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType41 { get; set; } + public global::System.Collections.Generic.List? ListType42 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType42 { get; set; } + public global::System.Collections.Generic.List? ListType43 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType43 { get; set; } + public global::System.Collections.Generic.List? ListType44 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType44 { get; set; } + public global::System.Collections.Generic.List? ListType45 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType45 { get; set; } + public global::System.Collections.Generic.List? ListType46 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType46 { get; set; } + public global::System.Collections.Generic.List? ListType47 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType47 { get; set; } + public global::System.Collections.Generic.List? ListType48 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType48 { get; set; } + public global::System.Collections.Generic.List? ListType49 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType49 { get; set; } + public global::System.Collections.Generic.List? ListType50 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType50 { get; set; } + public global::System.Collections.Generic.List? ListType51 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType51 { get; set; } + public global::System.Collections.Generic.List? ListType52 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType52 { get; set; } + public global::System.Collections.Generic.List? ListType53 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType53 { get; set; } + public global::System.Collections.Generic.List? ListType54 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType54 { get; set; } + public global::System.Collections.Generic.List? ListType55 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType55 { get; set; } + public global::System.Collections.Generic.List? ListType56 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType56 { get; set; } + public global::System.Collections.Generic.List? ListType57 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType57 { get; set; } + public global::System.Collections.Generic.List? ListType58 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType58 { get; set; } + public global::System.Collections.Generic.List? ListType59 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType59 { get; set; } + public global::System.Collections.Generic.List? ListType60 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType60 { get; set; } + public global::System.Collections.Generic.List? ListType61 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType61 { get; set; } + public global::System.Collections.Generic.List? ListType62 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType62 { get; set; } + public global::System.Collections.Generic.List? ListType63 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType63 { get; set; } + public global::System.Collections.Generic.List? ListType64 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType64 { get; set; } + public global::System.Collections.Generic.List? ListType65 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType65 { get; set; } + public global::System.Collections.Generic.List? ListType66 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType66 { get; set; } + public global::System.Collections.Generic.List? ListType67 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType67 { get; set; } + public global::System.Collections.Generic.List? ListType68 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType68 { get; set; } + public global::System.Collections.Generic.List? ListType69 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType69 { get; set; } + public global::System.Collections.Generic.List? ListType70 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType70 { get; set; } + public global::System.Collections.Generic.List? ListType71 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType71 { get; set; } + public global::System.Collections.Generic.List? ListType72 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType72 { get; set; } + public global::System.Collections.Generic.List? ListType73 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType73 { get; set; } + public global::System.Collections.Generic.List? ListType74 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType74 { get; set; } + public global::System.Collections.Generic.List? ListType75 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType75 { get; set; } + public global::System.Collections.Generic.List? ListType76 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType76 { get; set; } + public global::System.Collections.Generic.List? ListType77 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType77 { get; set; } + public global::System.Collections.Generic.List? ListType78 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType78 { get; set; } + public global::System.Collections.Generic.List? ListType79 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType79 { get; set; } + public global::System.Collections.Generic.List? ListType80 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType80 { get; set; } + public global::System.Collections.Generic.List? ListType81 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType81 { get; set; } + public global::System.Collections.Generic.List? ListType82 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType82 { get; set; } + public global::System.Collections.Generic.List? ListType83 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType83 { get; set; } + public global::System.Collections.Generic.List? ListType84 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType84 { get; set; } + public global::System.Collections.Generic.List? ListType85 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType85 { get; set; } + public global::System.Collections.Generic.List? ListType86 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType86 { get; set; } + public global::System.Collections.Generic.List? ListType87 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType87 { get; set; } + public global::System.Collections.Generic.List? ListType88 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType88 { get; set; } + public global::System.Collections.Generic.List? ListType89 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType89 { get; set; } + public global::System.Collections.Generic.List? ListType90 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType90 { get; set; } + public global::System.Collections.Generic.List? ListType91 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType91 { get; set; } + public global::System.Collections.Generic.List? ListType92 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType92 { get; set; } + public global::System.Collections.Generic.List? ListType93 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType93 { get; set; } + public global::System.Collections.Generic.List? ListType94 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType94 { get; set; } + public global::System.Collections.Generic.List? ListType95 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType95 { get; set; } + public global::System.Collections.Generic.List? ListType96 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType96 { get; set; } + public global::System.Collections.Generic.List? ListType97 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType97 { get; set; } + public global::System.Collections.Generic.List? ListType98 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType98 { get; set; } + public global::System.Collections.Generic.List? ListType99 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType99 { get; set; } + public global::System.Collections.Generic.List? ListType100 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType100 { get; set; } + public global::System.Collections.Generic.List? ListType101 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType101 { get; set; } + public global::System.Collections.Generic.List? ListType102 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType102 { get; set; } + public global::System.Collections.Generic.List? ListType103 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType103 { get; set; } + public global::System.Collections.Generic.List? ListType104 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType104 { get; set; } + public global::System.Collections.Generic.List? ListType105 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType105 { get; set; } + public global::System.Collections.Generic.List? ListType106 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType106 { get; set; } + public global::System.Collections.Generic.List? ListType107 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType107 { get; set; } + public global::System.Collections.Generic.List? ListType108 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType108 { get; set; } + public global::System.Collections.Generic.List? ListType109 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType109 { get; set; } + public global::System.Collections.Generic.List? ListType110 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType110 { get; set; } + public global::System.Collections.Generic.List? ListType111 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType111 { get; set; } + public global::System.Collections.Generic.List? ListType112 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType112 { get; set; } + public global::System.Collections.Generic.List? ListType113 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType113 { get; set; } + public global::System.Collections.Generic.List? ListType114 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType114 { get; set; } + public global::System.Collections.Generic.List? ListType115 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType115 { get; set; } + public global::System.Collections.Generic.List? ListType116 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType116 { get; set; } + public global::System.Collections.Generic.List? ListType117 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType117 { get; set; } + public global::System.Collections.Generic.List? ListType118 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType118 { get; set; } + public global::System.Collections.Generic.List? ListType119 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType119 { get; set; } + public global::System.Collections.Generic.List? ListType120 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType120 { get; set; } + public global::System.Collections.Generic.List? ListType121 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType121 { get; set; } + public global::System.Collections.Generic.List? ListType122 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType122 { get; set; } + public global::System.Collections.Generic.List? ListType123 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType123 { get; set; } + public global::System.Collections.Generic.List? ListType124 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType124 { get; set; } + public global::System.Collections.Generic.List? ListType125 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType125 { get; set; } + public global::System.Collections.Generic.List? ListType126 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType126 { get; set; } + public global::System.Collections.Generic.List? ListType127 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType127 { get; set; } + public global::System.Collections.Generic.List? ListType128 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType128 { get; set; } + public global::System.Collections.Generic.List? ListType129 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType129 { get; set; } + public global::System.Collections.Generic.List? ListType130 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType130 { get; set; } + public global::System.Collections.Generic.List? ListType131 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType131 { get; set; } + public global::System.Collections.Generic.List? ListType132 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType132 { get; set; } + public global::System.Collections.Generic.List? ListType133 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType133 { get; set; } + public global::System.Collections.Generic.List? ListType134 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType134 { get; set; } + public global::System.Collections.Generic.List? ListType135 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType135 { get; set; } + public global::System.Collections.Generic.List? ListType136 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType136 { get; set; } + public global::System.Collections.Generic.List? ListType137 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType137 { get; set; } + public global::System.Collections.Generic.List? ListType138 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType138 { get; set; } + public global::System.Collections.Generic.List? ListType139 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType139 { get; set; } + public global::System.Collections.Generic.List? ListType140 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType140 { get; set; } + public global::System.Collections.Generic.List? ListType141 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType141 { get; set; } + public global::System.Collections.Generic.List? ListType142 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType142 { get; set; } + public global::System.Collections.Generic.List? ListType143 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType143 { get; set; } + public global::System.Collections.Generic.List? ListType144 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType144 { get; set; } + public global::System.Collections.Generic.List? ListType145 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType145 { get; set; } + public global::System.Collections.Generic.List? ListType146 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType146 { get; set; } + public global::System.Collections.Generic.List? ListType147 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType147 { get; set; } + public global::System.Collections.Generic.List? ListType148 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType148 { get; set; } + public global::System.Collections.Generic.List? ListType149 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType149 { get; set; } + public global::System.Collections.Generic.List? ListType150 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType150 { get; set; } + public global::System.Collections.Generic.List? ListType151 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType151 { get; set; } + public global::System.Collections.Generic.List? ListType152 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType152 { get; set; } + public global::System.Collections.Generic.List? ListType153 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType153 { get; set; } + public global::System.Collections.Generic.List? ListType154 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType154 { get; set; } + public global::System.Collections.Generic.List? ListType155 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType155 { get; set; } + public global::System.Collections.Generic.List? ListType156 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType156 { get; set; } + public global::System.Collections.Generic.List? ListType157 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType157 { get; set; } + public global::System.Collections.Generic.List? ListType158 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType158 { get; set; } + public global::System.Collections.Generic.List? ListType159 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType159 { get; set; } + public global::System.Collections.Generic.List? ListType160 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType160 { get; set; } + public global::System.Collections.Generic.List? ListType161 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType161 { get; set; } + public global::System.Collections.Generic.List? ListType162 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType162 { get; set; } + public global::System.Collections.Generic.List>? ListType163 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType163 { get; set; } + public global::System.Collections.Generic.List? ListType164 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType164 { get; set; } + public global::System.Collections.Generic.List>? ListType165 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType165 { get; set; } + public global::System.Collections.Generic.List>? ListType166 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType166 { get; set; } + public global::System.Collections.Generic.List>? ListType167 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType167 { get; set; } + public global::System.Collections.Generic.List? ListType168 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType168 { get; set; } + public global::System.Collections.Generic.List? ListType169 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType169 { get; set; } + public global::System.Collections.Generic.List>? ListType170 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType170 { get; set; } + public global::System.Collections.Generic.List>? ListType171 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType171 { get; set; } + public global::System.Collections.Generic.List>? ListType172 { get; set; } } } \ No newline at end of file diff --git a/src/libs/Opik/Generated/Opik.Models.ProjectRetrieveDetailed.g.cs b/src/libs/Opik/Generated/Opik.Models.ProjectRetrieveDetailed.g.cs index de3d2d30..417c93bc 100644 --- a/src/libs/Opik/Generated/Opik.Models.ProjectRetrieveDetailed.g.cs +++ b/src/libs/Opik/Generated/Opik.Models.ProjectRetrieveDetailed.g.cs @@ -15,6 +15,12 @@ public sealed partial class ProjectRetrieveDetailed [global::System.Text.Json.Serialization.JsonRequired] public required string Name { get; set; } + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("includeStats")] + public bool? IncludeStats { get; set; } + /// /// Additional properties that are not explicitly defined in the schema /// @@ -25,13 +31,16 @@ public sealed partial class ProjectRetrieveDetailed /// Initializes a new instance of the class. /// /// + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ProjectRetrieveDetailed( - string name) + string name, + bool? includeStats) { this.Name = name ?? throw new global::System.ArgumentNullException(nameof(name)); + this.IncludeStats = includeStats; } /// diff --git a/src/libs/Opik/Generated/Opik.Models.SpendBreakdownsResponse.Json.g.cs b/src/libs/Opik/Generated/Opik.Models.SpendBreakdownsResponse.Json.g.cs new file mode 100644 index 00000000..5ec990d2 --- /dev/null +++ b/src/libs/Opik/Generated/Opik.Models.SpendBreakdownsResponse.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace Opik +{ + public sealed partial class SpendBreakdownsResponse + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::Opik.SourceGenerationContext.Default); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::Opik.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::Opik.SpendBreakdownsResponse? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::Opik.SpendBreakdownsResponse), + jsonSerializerContext) as global::Opik.SpendBreakdownsResponse; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::Opik.SpendBreakdownsResponse? FromJson( + string json) + { + return FromJson( + json, + global::Opik.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::Opik.SpendBreakdownsResponse? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::Opik.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::Opik.SpendBreakdownsResponse), + jsonSerializerContext).ConfigureAwait(false)) as global::Opik.SpendBreakdownsResponse; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::Opik.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::Opik.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/Opik/Generated/Opik.Models.SpendBreakdownsResponse.g.cs b/src/libs/Opik/Generated/Opik.Models.SpendBreakdownsResponse.g.cs new file mode 100644 index 00000000..68c2954c --- /dev/null +++ b/src/libs/Opik/Generated/Opik.Models.SpendBreakdownsResponse.g.cs @@ -0,0 +1,44 @@ + +#nullable enable + +namespace Opik +{ + /// + /// + /// + public sealed partial class SpendBreakdownsResponse + { + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("breakdowns")] + public global::System.Collections.Generic.IList? Breakdowns { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public SpendBreakdownsResponse( + global::System.Collections.Generic.IList? breakdowns) + { + this.Breakdowns = breakdowns; + } + + /// + /// Initializes a new instance of the class. + /// + public SpendBreakdownsResponse() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/Opik/Generated/Opik.ProjectsClient.RetrieveProject.g.cs b/src/libs/Opik/Generated/Opik.ProjectsClient.RetrieveProject.g.cs index 0bcd58b6..84f6798a 100644 --- a/src/libs/Opik/Generated/Opik.ProjectsClient.RetrieveProject.g.cs +++ b/src/libs/Opik/Generated/Opik.ProjectsClient.RetrieveProject.g.cs @@ -564,17 +564,20 @@ partial void ProcessRetrieveProjectResponseContent( /// Retrieve project /// /// + /// /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// public async global::System.Threading.Tasks.Task RetrieveProjectAsync( string name, + bool? includeStats = default, global::Opik.AutoSDKRequestOptions? requestOptions = default, global::System.Threading.CancellationToken cancellationToken = default) { var __request = new global::Opik.ProjectRetrieveDetailed { Name = name, + IncludeStats = includeStats, }; return await RetrieveProjectAsync( diff --git a/src/libs/Opik/openapi.yaml b/src/libs/Opik/openapi.yaml index bd925deb..daaba759 100644 --- a/src/libs/Opik/openapi.yaml +++ b/src/libs/Opik/openapi.yaml @@ -1267,6 +1267,31 @@ paths: application/json: schema: $ref: "#/components/schemas/ErrorMessage" + /v1/private/ai-spend/composition/breakdowns: + post: + tags: + - AI Spend + summary: Get all spend lane breakdowns + description: Get the per-item breakdown for every composition lane in one request + operationId: getSpendAllBreakdowns + requestBody: + content: + application/json: + schema: + $ref: "#/components/schemas/SpendMetricRequest" + responses: + "200": + description: Lane breakdowns + content: + application/json: + schema: + $ref: "#/components/schemas/SpendBreakdownsResponse" + "400": + description: Bad Request + content: + application/json: + schema: + $ref: "#/components/schemas/ErrorMessage" /v1/private/ai-spend/composition: post: tags: @@ -10293,29 +10318,27 @@ components: - open - resolved - closed - HarnessEntry: - type: object - properties: - key: - type: string - label: - type: string - Lane: + Item: type: object properties: - key: - type: string label: type: string total_tokens: type: integer format: int64 + definition_tokens: + type: integer + format: int64 + usage_tokens: + type: integer + format: int64 by_model: type: array items: $ref: "#/components/schemas/ModelTiers" - has_breakdown: - type: boolean + count: + type: integer + format: int64 ModelTiers: type: object properties: @@ -10333,27 +10356,38 @@ components: output_tokens: type: integer format: int64 - Side: + SpendBreakdownResponse: type: object properties: + lane_key: + type: string + title: + type: string + subtitle: + type: string total_tokens: type: integer format: int64 - lanes: + by_model: type: array items: - $ref: "#/components/schemas/Lane" - SpendCompositionResponse: + $ref: "#/components/schemas/ModelTiers" + item_count: + type: integer + format: int32 + item_unit: + type: string + items: + type: array + items: + $ref: "#/components/schemas/Item" + SpendBreakdownsResponse: type: object properties: - input: - $ref: "#/components/schemas/Side" - harness: + breakdowns: type: array items: - $ref: "#/components/schemas/HarnessEntry" - output: - $ref: "#/components/schemas/Side" + $ref: "#/components/schemas/SpendBreakdownResponse" SpendMetricRequest: required: - interval_end @@ -10378,52 +10412,50 @@ components: type: boolean project_provided: type: boolean - Item: + HarnessEntry: + type: object + properties: + key: + type: string + label: + type: string + Lane: type: object properties: + key: + type: string label: type: string total_tokens: type: integer format: int64 - definition_tokens: - type: integer - format: int64 - usage_tokens: - type: integer - format: int64 by_model: type: array items: $ref: "#/components/schemas/ModelTiers" - count: - type: integer - format: int64 - SpendBreakdownResponse: + has_breakdown: + type: boolean + Side: type: object properties: - lane_key: - type: string - title: - type: string - subtitle: - type: string total_tokens: type: integer format: int64 - by_model: + lanes: type: array items: - $ref: "#/components/schemas/ModelTiers" - item_count: - type: integer - format: int32 - item_unit: - type: string - items: + $ref: "#/components/schemas/Lane" + SpendCompositionResponse: + type: object + properties: + input: + $ref: "#/components/schemas/Side" + harness: type: array items: - $ref: "#/components/schemas/Item" + $ref: "#/components/schemas/HarnessEntry" + output: + $ref: "#/components/schemas/Side" Result: type: object properties: @@ -19978,6 +20010,8 @@ components: name: minLength: 1 type: string + includeStats: + type: boolean ProjectUpdate: type: object properties: