diff --git a/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.SendEmail.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.SendEmail.g.cs
index ee901240..cd2b77ed 100644
--- a/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.SendEmail.g.cs
+++ b/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.SendEmail.g.cs
@@ -76,7 +76,7 @@ public partial interface IOrganizationsClient
///
global::System.Threading.Tasks.Task SendEmailAsync(
global::System.Collections.Generic.IList emails,
- global::LabelStudio.OrganizationRoleEnum role,
+ global::LabelStudio.AssignableOrganizationRoleEnum role,
global::System.Collections.Generic.IList? projects = default,
global::System.Collections.Generic.IList? workspaces = default,
global::LabelStudio.AutoSDKRequestOptions? requestOptions = default,
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.Update3.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.Update3.g.cs
index 0bc12f00..633037c6 100644
--- a/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.Update3.g.cs
+++ b/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.Update3.g.cs
@@ -93,7 +93,7 @@ public partial interface IOrganizationsClient
///
global::System.Threading.Tasks.Task Update3Async(
int id,
- global::LabelStudio.OrganizationRoleEnum? role = default,
+ global::LabelStudio.AssignableOrganizationRoleEnum? role = default,
int? userId = default,
global::LabelStudio.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.UpdateDefaultRole.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.UpdateDefaultRole.g.cs
index b78e26ba..60a0af15 100644
--- a/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.UpdateDefaultRole.g.cs
+++ b/src/libs/LabelStudio/Generated/LabelStudio.IOrganizationsClient.UpdateDefaultRole.g.cs
@@ -74,7 +74,8 @@ public partial interface IOrganizationsClient
/// * `RE` - Reviewer
/// * `AN` - Annotator
/// * `DI` - Deactivated
- /// * `NO` - Not Activated
+ /// * `NO` - Not Activated
+ /// * `VO` - View Only
///
///
/// Email notification settings for this organization. Controls which email notifications users can receive. Structure: {"notifications_allowed": {"notification_type": bool}}
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.IProjectRolesClient.Add.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.IProjectRolesClient.Add.g.cs
index ccbe645c..cf6b1dcb 100644
--- a/src/libs/LabelStudio/Generated/LabelStudio.IProjectRolesClient.Add.g.cs
+++ b/src/libs/LabelStudio/Generated/LabelStudio.IProjectRolesClient.Add.g.cs
@@ -71,7 +71,7 @@ public partial interface IProjectRolesClient
///
global::System.Threading.Tasks.Task AddAsync(
int project,
- global::LabelStudio.OrganizationRoleEnum role,
+ global::LabelStudio.AssignableOrganizationRoleEnum role,
int user,
global::LabelStudio.AutoSDKRequestOptions? requestOptions = default,
global::System.Threading.CancellationToken cancellationToken = default);
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.IProjectsClient.Post.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.IProjectsClient.Post.g.cs
index 8474ca42..30166bf6 100644
--- a/src/libs/LabelStudio/Generated/LabelStudio.IProjectsClient.Post.g.cs
+++ b/src/libs/LabelStudio/Generated/LabelStudio.IProjectsClient.Post.g.cs
@@ -25,7 +25,7 @@ public partial interface IProjectsClient
/// 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 PostAsync(
+ global::System.Threading.Tasks.Task PostAsync(
int id,
global::LabelStudio.ProjectMemberBulkAssignRequest request,
@@ -58,7 +58,7 @@ public partial interface IProjectsClient
/// 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> PostAsResponseAsync(
+ global::System.Threading.Tasks.Task> PostAsResponseAsync(
int id,
global::LabelStudio.ProjectMemberBulkAssignRequest request,
@@ -102,7 +102,7 @@ public partial interface IProjectsClient
/// 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 PostAsync(
+ global::System.Threading.Tasks.Task PostAsync(
int id,
bool all,
string? lastActivityGte = default,
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.JsonConverters.AssignableOrganizationRoleEnum.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.JsonConverters.AssignableOrganizationRoleEnum.g.cs
new file mode 100644
index 00000000..384270b9
--- /dev/null
+++ b/src/libs/LabelStudio/Generated/LabelStudio.JsonConverters.AssignableOrganizationRoleEnum.g.cs
@@ -0,0 +1,53 @@
+#nullable enable
+
+namespace LabelStudio.JsonConverters
+{
+ ///
+ public sealed class AssignableOrganizationRoleEnumJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::LabelStudio.AssignableOrganizationRoleEnum Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::LabelStudio.AssignableOrganizationRoleEnumExtensions.ToEnum(stringValue) ?? default;
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::LabelStudio.AssignableOrganizationRoleEnum)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::LabelStudio.AssignableOrganizationRoleEnum);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::LabelStudio.AssignableOrganizationRoleEnum value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ writer.WriteStringValue(global::LabelStudio.AssignableOrganizationRoleEnumExtensions.ToValueString(value));
+ }
+ }
+}
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.JsonConverters.AssignableOrganizationRoleEnumNullable.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.JsonConverters.AssignableOrganizationRoleEnumNullable.g.cs
new file mode 100644
index 00000000..29ba443f
--- /dev/null
+++ b/src/libs/LabelStudio/Generated/LabelStudio.JsonConverters.AssignableOrganizationRoleEnumNullable.g.cs
@@ -0,0 +1,60 @@
+#nullable enable
+
+namespace LabelStudio.JsonConverters
+{
+ ///
+ public sealed class AssignableOrganizationRoleEnumNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter
+ {
+ ///
+ public override global::LabelStudio.AssignableOrganizationRoleEnum? Read(
+ ref global::System.Text.Json.Utf8JsonReader reader,
+ global::System.Type typeToConvert,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ switch (reader.TokenType)
+ {
+ case global::System.Text.Json.JsonTokenType.String:
+ {
+ var stringValue = reader.GetString();
+ if (stringValue != null)
+ {
+ return global::LabelStudio.AssignableOrganizationRoleEnumExtensions.ToEnum(stringValue);
+ }
+
+ break;
+ }
+ case global::System.Text.Json.JsonTokenType.Number:
+ {
+ var numValue = reader.GetInt32();
+ return (global::LabelStudio.AssignableOrganizationRoleEnum)numValue;
+ }
+ case global::System.Text.Json.JsonTokenType.Null:
+ {
+ return default(global::LabelStudio.AssignableOrganizationRoleEnum?);
+ }
+ default:
+ throw new global::System.ArgumentOutOfRangeException(nameof(reader));
+ }
+
+ return default;
+ }
+
+ ///
+ public override void Write(
+ global::System.Text.Json.Utf8JsonWriter writer,
+ global::LabelStudio.AssignableOrganizationRoleEnum? value,
+ global::System.Text.Json.JsonSerializerOptions options)
+ {
+ writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer));
+
+ if (value == null)
+ {
+ writer.WriteNullValue();
+ }
+ else
+ {
+ writer.WriteStringValue(global::LabelStudio.AssignableOrganizationRoleEnumExtensions.ToValueString(value.Value));
+ }
+ }
+ }
+}
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContext.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContext.g.cs
index 74d70e74..4642b2d5 100644
--- a/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContext.g.cs
+++ b/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContext.g.cs
@@ -25,6 +25,10 @@ namespace LabelStudio
typeof(global::LabelStudio.JsonConverters.AnnotationHistoryActionEnumNullableJsonConverter),
+ typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter),
+
+ typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumNullableJsonConverter),
+
typeof(global::LabelStudio.JsonConverters.AuthMethodEnumJsonConverter),
typeof(global::LabelStudio.JsonConverters.AuthMethodEnumNullableJsonConverter),
@@ -434,6 +438,7 @@ namespace LabelStudio
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AnnotationRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AnnotationReview))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AnnotationReviewRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AssignableOrganizationRoleEnum), TypeInfoPropertyName = "AssignableOrganizationRoleEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.LabelStreamTaskDistributionEnum), TypeInfoPropertyName = "LabelStreamTaskDistributionEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AssignmentSettingsRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AssociatedProject))]
@@ -476,8 +481,7 @@ namespace LabelStudio
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.CommentSerializerWithExpandedUser))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.LseUser))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ConfigurablePermissionOption))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OrganizationRoleEnum), TypeInfoPropertyName = "OrganizationRoleEnum2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.Dictionary))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ControlTagWeightRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ConvertedFormat))]
@@ -522,6 +526,7 @@ namespace LabelStudio
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.FilterGroupRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.DefaultModelVersionNameResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.DefaultRole))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OrganizationRoleEnum), TypeInfoPropertyName = "OrganizationRoleEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.Dimension))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.DimensionCreateRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.DimensionList))]
@@ -719,6 +724,7 @@ namespace LabelStudio
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OrganizationPermission))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OrganizationPermissionRoleEnum), TypeInfoPropertyName = "OrganizationPermissionRoleEnum2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OrganizationPermissionRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.PaginatedAllRolesProjectListList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
@@ -832,6 +838,8 @@ namespace LabelStudio
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectMemberBulkAssignRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::System.Collections.Generic.IList))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectMemberBulkAssignRolesRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectMemberBulkAssignResponse))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectMemberIdentityVerificationError))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectMemberRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectReimport))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectRole))]
@@ -877,10 +885,6 @@ namespace LabelStudio
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ScimSettingsUpdate))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ScimSettingsUpdateRequest))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SendInviteRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SerializationOption))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SerializationOptionRequest))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SessionTimeoutPolicy))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.StateBackfillCancelResponse))]
internal sealed partial class SourceGenerationContextChunk0 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -904,6 +908,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
typeof(global::LabelStudio.JsonConverters.AnnotationHistoryActionEnumNullableJsonConverter),
+ typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter),
+
+ typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumNullableJsonConverter),
+
typeof(global::LabelStudio.JsonConverters.AuthMethodEnumJsonConverter),
typeof(global::LabelStudio.JsonConverters.AuthMethodEnumNullableJsonConverter),
@@ -1263,6 +1271,10 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OneOf), TypeInfoPropertyName = "ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllTrue_d4cd88601b7727f2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OneOf?), TypeInfoPropertyName = "ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllTrue_42876ca72ef469f3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OneOf?), TypeInfoPropertyName = "ApiProjectsStatsTotalAgreementRetrieveResponseVariant2_34675e999e90b30b")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SerializationOption))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SerializationOptionRequest))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SessionTimeoutPolicy))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.StateBackfillCancelResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.StateBackfillErrorResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.StateBackfillJobItem))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.StateBackfillJobItemResponse))]
@@ -1489,7 +1501,6 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ApiProjectsImportCreateResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ApiProjectsImportPredictionsCreateResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ApiProjectsMembersBulkDestroyResponse))]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ApiProjectsMembersBulkCreateResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ApiProjectsModelStatsAgreementRetrieveResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ApiProjectsModelStatsAgreementGroundtruthRetrieveResponse))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ApiProjectsModelStatsPredictionRetrieveResponse))]
@@ -1591,15 +1602,16 @@ internal sealed partial class SourceGenerationContextChunk0 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(long?))]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AnnotationHistoryActionEnum?), TypeInfoPropertyName = "NullableAnnotationHistoryActionEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(double?))]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AssignableOrganizationRoleEnum?), TypeInfoPropertyName = "NullableAssignableOrganizationRoleEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.LabelStreamTaskDistributionEnum?), TypeInfoPropertyName = "NullableLabelStreamTaskDistributionEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AuthMethodEnum?), TypeInfoPropertyName = "NullableAuthMethodEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.AuthTypeEnum?), TypeInfoPropertyName = "NullableAuthTypeEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.StorageStatusEnum?), TypeInfoPropertyName = "NullableStorageStatusEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.PromptsStatusEnum?), TypeInfoPropertyName = "NullablePromptsStatusEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.BudgetResetPeriodEnum?), TypeInfoPropertyName = "NullableBudgetResetPeriodEnum2")]
- [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OrganizationRoleEnum?), TypeInfoPropertyName = "NullableOrganizationRoleEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.ProjectImportStatusEnum?), TypeInfoPropertyName = "NullableProjectImportStatusEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.DataManagerFilterModeEnum?), TypeInfoPropertyName = "NullableDataManagerFilterModeEnum2")]
+ [global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OrganizationRoleEnum?), TypeInfoPropertyName = "NullableOrganizationRoleEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.EditionEnum?), TypeInfoPropertyName = "NullableEditionEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.EstimatedDurationUnitEnum?), TypeInfoPropertyName = "NullableEstimatedDurationUnitEnum2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.SegmentationEnum?), TypeInfoPropertyName = "NullableSegmentationEnum2")]
@@ -1678,7 +1690,7 @@ internal sealed partial class SourceGenerationContextChunk0 : 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))]
@@ -1716,6 +1728,7 @@ internal sealed partial class SourceGenerationContextChunk0 : 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))]
@@ -1755,11 +1768,6 @@ internal sealed partial class SourceGenerationContextChunk0 : 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))]
internal sealed partial class SourceGenerationContextChunk1 : global::System.Text.Json.Serialization.JsonSerializerContext
{
}
@@ -1783,6 +1791,10 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
typeof(global::LabelStudio.JsonConverters.AnnotationHistoryActionEnumNullableJsonConverter),
+ typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter),
+
+ typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumNullableJsonConverter),
+
typeof(global::LabelStudio.JsonConverters.AuthMethodEnumJsonConverter),
typeof(global::LabelStudio.JsonConverters.AuthMethodEnumNullableJsonConverter),
@@ -2142,6 +2154,11 @@ internal sealed partial class SourceGenerationContextChunk1 : global::System.Tex
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OneOf), TypeInfoPropertyName = "ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllTrue_d4cd88601b7727f2")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OneOf?), TypeInfoPropertyName = "ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllTrue_42876ca72ef469f3")]
[global::System.Text.Json.Serialization.JsonSerializable(typeof(global::LabelStudio.OneOf?), TypeInfoPropertyName = "ApiProjectsStatsTotalAgreementRetrieveResponseVariant2_34675e999e90b30b")]
+ [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))]
@@ -2262,6 +2279,8 @@ private SourceGenerationContext(global::System.Text.Json.JsonSerializerOptions o
options.Converters.Add(new global::LabelStudio.JsonConverters.AgreementMethodologyEnumNullableJsonConverter());
options.Converters.Add(new global::LabelStudio.JsonConverters.AnnotationHistoryActionEnumJsonConverter());
options.Converters.Add(new global::LabelStudio.JsonConverters.AnnotationHistoryActionEnumNullableJsonConverter());
+ options.Converters.Add(new global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter());
+ options.Converters.Add(new global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumNullableJsonConverter());
options.Converters.Add(new global::LabelStudio.JsonConverters.AuthMethodEnumJsonConverter());
options.Converters.Add(new global::LabelStudio.JsonConverters.AuthMethodEnumNullableJsonConverter());
options.Converters.Add(new global::LabelStudio.JsonConverters.AuthTypeEnumJsonConverter());
diff --git a/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContextTypes.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContextTypes.g.cs
index fb0ec20f..166b14b6 100644
--- a/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContextTypes.g.cs
+++ b/src/libs/LabelStudio/Generated/LabelStudio.JsonSerializerContextTypes.g.cs
@@ -216,179 +216,179 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::LabelStudio.LabelStreamTaskDistributionEnum? Type47 { get; set; }
+ public global::LabelStudio.AssignableOrganizationRoleEnum? Type47 { get; set; }
///
///
///
- public global::LabelStudio.AssignmentSettingsRequest? Type48 { get; set; }
+ public global::LabelStudio.LabelStreamTaskDistributionEnum? Type48 { get; set; }
///
///
///
- public global::LabelStudio.AssociatedProject? Type49 { get; set; }
+ public global::LabelStudio.AssignmentSettingsRequest? Type49 { get; set; }
///
///
///
- public global::LabelStudio.AuthMethodEnum? Type50 { get; set; }
+ public global::LabelStudio.AssociatedProject? Type50 { get; set; }
///
///
///
- public global::LabelStudio.AuthTypeEnum? Type51 { get; set; }
+ public global::LabelStudio.AuthMethodEnum? Type51 { get; set; }
///
///
///
- public global::LabelStudio.AzureBlobExportStorage? Type52 { get; set; }
+ public global::LabelStudio.AuthTypeEnum? Type52 { get; set; }
///
///
///
- public global::LabelStudio.StorageStatusEnum? Type53 { get; set; }
+ public global::LabelStudio.AzureBlobExportStorage? Type53 { get; set; }
///
///
///
- public global::LabelStudio.AzureBlobImportStorage? Type54 { get; set; }
+ public global::LabelStudio.StorageStatusEnum? Type54 { get; set; }
///
///
///
- public global::LabelStudio.AzureDatasetStorage? Type55 { get; set; }
+ public global::LabelStudio.AzureBlobImportStorage? Type55 { get; set; }
///
///
///
- public global::LabelStudio.AzureDatasetStorageRequest? Type56 { get; set; }
+ public global::LabelStudio.AzureDatasetStorage? Type56 { get; set; }
///
///
///
- public global::LabelStudio.AzureServicePrincipalExportStorage? Type57 { get; set; }
+ public global::LabelStudio.AzureDatasetStorageRequest? Type57 { get; set; }
///
///
///
- public global::LabelStudio.AzureServicePrincipalExportStorageRequest? Type58 { get; set; }
+ public global::LabelStudio.AzureServicePrincipalExportStorage? Type58 { get; set; }
///
///
///
- public global::LabelStudio.AzureServicePrincipalImportStorage? Type59 { get; set; }
+ public global::LabelStudio.AzureServicePrincipalExportStorageRequest? Type59 { get; set; }
///
///
///
- public global::LabelStudio.AzureServicePrincipalImportStorageRequest? Type60 { get; set; }
+ public global::LabelStudio.AzureServicePrincipalImportStorage? Type60 { get; set; }
///
///
///
- public global::LabelStudio.BatchFailedPredictions? Type61 { get; set; }
+ public global::LabelStudio.AzureServicePrincipalImportStorageRequest? Type61 { get; set; }
///
///
///
- public global::LabelStudio.BatchFailedPredictionsRequestRequest? Type62 { get; set; }
+ public global::LabelStudio.BatchFailedPredictions? Type62 { get; set; }
///
///
///
- public global::LabelStudio.BatchPredictions? Type63 { get; set; }
+ public global::LabelStudio.BatchFailedPredictionsRequestRequest? Type63 { get; set; }
///
///
///
- public global::LabelStudio.BatchPredictionsRequestRequest? Type64 { get; set; }
+ public global::LabelStudio.BatchPredictions? Type64 { get; set; }
///
///
///
- public global::LabelStudio.BillingChecks? Type65 { get; set; }
+ public global::LabelStudio.BatchPredictionsRequestRequest? Type65 { get; set; }
///
///
///
- public global::LabelStudio.CountLimit? Type66 { get; set; }
+ public global::LabelStudio.BillingChecks? Type66 { get; set; }
///
///
///
- public global::LabelStudio.PromptsStatusEnum? Type67 { get; set; }
+ public global::LabelStudio.CountLimit? Type67 { get; set; }
///
///
///
- public global::LabelStudio.BillingFlags? Type68 { get; set; }
+ public global::LabelStudio.PromptsStatusEnum? Type68 { get; set; }
///
///
///
- public global::LabelStudio.BillingInfoResponse? Type69 { get; set; }
+ public global::LabelStudio.BillingFlags? Type69 { get; set; }
///
///
///
- public global::LabelStudio.Blueprint? Type70 { get; set; }
+ public global::LabelStudio.BillingInfoResponse? Type70 { get; set; }
///
///
///
- public global::LabelStudio.BlueprintRequest? Type71 { get; set; }
+ public global::LabelStudio.Blueprint? Type71 { get; set; }
///
///
///
- public global::LabelStudio.BudgetResetPeriodEnum? Type72 { get; set; }
+ public global::LabelStudio.BlueprintRequest? Type72 { get; set; }
///
///
///
- public global::LabelStudio.BulkIndicatorRun? Type73 { get; set; }
+ public global::LabelStudio.BudgetResetPeriodEnum? Type73 { get; set; }
///
///
///
- public global::LabelStudio.BulkIndicatorsResponse? Type74 { get; set; }
+ public global::LabelStudio.BulkIndicatorRun? Type74 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type75 { get; set; }
+ public global::LabelStudio.BulkIndicatorsResponse? Type75 { get; set; }
///
///
///
- public global::LabelStudio.BulkOrganizationMemberTagAssignmentRequest? Type76 { get; set; }
+ public global::System.Collections.Generic.IList? Type76 { get; set; }
///
///
///
- public global::LabelStudio.BulkProjectLearningAssignmentRequest? Type77 { get; set; }
+ public global::LabelStudio.BulkOrganizationMemberTagAssignmentRequest? Type77 { get; set; }
///
///
///
- public global::LabelStudio.BulkResetCourseProgressRequest? Type78 { get; set; }
+ public global::LabelStudio.BulkProjectLearningAssignmentRequest? Type78 { get; set; }
///
///
///
- public global::LabelStudio.CancelModelRunResponse? Type79 { get; set; }
+ public global::LabelStudio.BulkResetCourseProgressRequest? Type79 { get; set; }
///
///
///
- public global::LabelStudio.Certificate? Type80 { get; set; }
+ public global::LabelStudio.CancelModelRunResponse? Type80 { get; set; }
///
///
///
- public global::LabelStudio.CheckMatchingFunctionRequestRequest? Type81 { get; set; }
+ public global::LabelStudio.Certificate? Type81 { get; set; }
///
///
///
- public global::LabelStudio.ChildFilter? Type82 { get; set; }
+ public global::LabelStudio.CheckMatchingFunctionRequestRequest? Type82 { get; set; }
///
///
///
- public global::LabelStudio.ChildFilterRequest? Type83 { get; set; }
+ public global::LabelStudio.ChildFilter? Type83 { get; set; }
///
///
///
- public global::LabelStudio.Comment? Type84 { get; set; }
+ public global::LabelStudio.ChildFilterRequest? Type84 { get; set; }
///
///
///
- public global::LabelStudio.CommentRequest? Type85 { get; set; }
+ public global::LabelStudio.Comment? Type85 { get; set; }
///
///
///
- public global::LabelStudio.CommentSerializerWithExpandedUser? Type86 { get; set; }
+ public global::LabelStudio.CommentRequest? Type86 { get; set; }
///
///
///
- public global::LabelStudio.LseUser? Type87 { get; set; }
+ public global::LabelStudio.CommentSerializerWithExpandedUser? Type87 { get; set; }
///
///
///
- public global::LabelStudio.ConfigurablePermissionOption? Type88 { get; set; }
+ public global::LabelStudio.LseUser? Type88 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type89 { get; set; }
+ public global::LabelStudio.ConfigurablePermissionOption? Type89 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationRoleEnum? Type90 { get; set; }
+ public global::System.Collections.Generic.IList? Type90 { get; set; }
///
///
///
@@ -568,2695 +568,2707 @@ public sealed partial class JsonSerializerContextTypes
///
///
///
- public global::LabelStudio.Dimension? Type135 { get; set; }
+ public global::LabelStudio.OrganizationRoleEnum? Type135 { get; set; }
///
///
///
- public global::LabelStudio.DimensionCreateRequest? Type136 { get; set; }
+ public global::LabelStudio.Dimension? Type136 { get; set; }
///
///
///
- public global::LabelStudio.DimensionList? Type137 { get; set; }
+ public global::LabelStudio.DimensionCreateRequest? Type137 { get; set; }
///
///
///
- public global::LabelStudio.DimensionRequest? Type138 { get; set; }
+ public global::LabelStudio.DimensionList? Type138 { get; set; }
///
///
///
- public global::LabelStudio.DuplicateLearningResourceRequest? Type139 { get; set; }
+ public global::LabelStudio.DimensionRequest? Type139 { get; set; }
///
///
///
- public global::LabelStudio.EditionEnum? Type140 { get; set; }
+ public global::LabelStudio.DuplicateLearningResourceRequest? Type140 { get; set; }
///
///
///
- public global::LabelStudio.EstimatedDurationUnitEnum? Type141 { get; set; }
+ public global::LabelStudio.EditionEnum? Type141 { get; set; }
///
///
///
- public global::LabelStudio.Export? Type142 { get; set; }
+ public global::LabelStudio.EstimatedDurationUnitEnum? Type142 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type143 { get; set; }
+ public global::LabelStudio.Export? Type143 { get; set; }
///
///
///
- public global::LabelStudio.ExportConvertRequest? Type144 { get; set; }
+ public global::System.Collections.Generic.IList? Type144 { get; set; }
///
///
///
- public global::LabelStudio.FSMTransitionExecuteRequestRequest? Type145 { get; set; }
+ public global::LabelStudio.ExportConvertRequest? Type145 { get; set; }
///
///
///
- public global::LabelStudio.FSMTransitionExecuteResponse? Type146 { get; set; }
+ public global::LabelStudio.FSMTransitionExecuteRequestRequest? Type146 { get; set; }
///
///
///
- public global::LabelStudio.StateModel? Type147 { get; set; }
+ public global::LabelStudio.FSMTransitionExecuteResponse? Type147 { get; set; }
///
///
///
- public global::LabelStudio.FewShotExample? Type148 { get; set; }
+ public global::LabelStudio.StateModel? Type148 { get; set; }
///
///
///
- public global::LabelStudio.FewShotExampleRequest? Type149 { get; set; }
+ public global::LabelStudio.FewShotExample? Type149 { get; set; }
///
///
///
- public global::LabelStudio.FileUpload? Type150 { get; set; }
+ public global::LabelStudio.FewShotExampleRequest? Type150 { get; set; }
///
///
///
- public global::LabelStudio.Filter? Type151 { get; set; }
+ public global::LabelStudio.FileUpload? Type151 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type152 { get; set; }
+ public global::LabelStudio.Filter? Type152 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type153 { get; set; }
+ public global::System.Collections.Generic.IList? Type153 { get; set; }
///
///
///
- public global::LabelStudio.FilterRequest? Type154 { get; set; }
+ public global::System.Collections.Generic.IList? Type154 { get; set; }
///
///
///
- public global::LabelStudio.GCPCustomFunctionUpdateRequest? Type155 { get; set; }
+ public global::LabelStudio.FilterRequest? Type155 { get; set; }
///
///
///
- public global::LabelStudio.GCSDatasetStorage? Type156 { get; set; }
+ public global::LabelStudio.GCPCustomFunctionUpdateRequest? Type156 { get; set; }
///
///
///
- public global::LabelStudio.GCSDatasetStorageRequest? Type157 { get; set; }
+ public global::LabelStudio.GCSDatasetStorage? Type157 { get; set; }
///
///
///
- public global::LabelStudio.GCSExportStorage? Type158 { get; set; }
+ public global::LabelStudio.GCSDatasetStorageRequest? Type158 { get; set; }
///
///
///
- public global::LabelStudio.GCSImportStorage? Type159 { get; set; }
+ public global::LabelStudio.GCSExportStorage? Type159 { get; set; }
///
///
///
- public global::LabelStudio.GCSSAExportStorage? Type160 { get; set; }
+ public global::LabelStudio.GCSImportStorage? Type160 { get; set; }
///
///
///
- public global::LabelStudio.GCSSAExportStorageRequest? Type161 { get; set; }
+ public global::LabelStudio.GCSSAExportStorage? Type161 { get; set; }
///
///
///
- public global::LabelStudio.GCSSAImportStorage? Type162 { get; set; }
+ public global::LabelStudio.GCSSAExportStorageRequest? Type162 { get; set; }
///
///
///
- public global::LabelStudio.GCSSAImportStorageRequest? Type163 { get; set; }
+ public global::LabelStudio.GCSSAImportStorage? Type163 { get; set; }
///
///
///
- public global::LabelStudio.GCSWIFExportStorage? Type164 { get; set; }
+ public global::LabelStudio.GCSSAImportStorageRequest? Type164 { get; set; }
///
///
///
- public global::LabelStudio.GCSWIFExportStorageRequest? Type165 { get; set; }
+ public global::LabelStudio.GCSWIFExportStorage? Type165 { get; set; }
///
///
///
- public global::LabelStudio.GCSWIFImportStorage? Type166 { get; set; }
+ public global::LabelStudio.GCSWIFExportStorageRequest? Type166 { get; set; }
///
///
///
- public global::LabelStudio.GCSWIFImportStorageRequest? Type167 { get; set; }
+ public global::LabelStudio.GCSWIFImportStorage? Type167 { get; set; }
///
///
///
- public global::LabelStudio.Hotkeys? Type168 { get; set; }
+ public global::LabelStudio.GCSWIFImportStorageRequest? Type168 { get; set; }
///
///
///
- public global::LabelStudio.ImportApiRequest? Type169 { get; set; }
+ public global::LabelStudio.Hotkeys? Type169 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type170 { get; set; }
+ public global::LabelStudio.ImportApiRequest? Type170 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type171 { get; set; }
+ public global::System.Collections.Generic.IList? Type171 { get; set; }
///
///
///
- public global::LabelStudio.PredictionRequest? Type172 { get; set; }
+ public global::System.Collections.Generic.IList? Type172 { get; set; }
///
///
///
- public global::LabelStudio.InferenceRunCostEstimate? Type173 { get; set; }
+ public global::LabelStudio.PredictionRequest? Type173 { get; set; }
///
///
///
- public global::LabelStudio.KPIDetailResponse? Type174 { get; set; }
+ public global::LabelStudio.InferenceRunCostEstimate? Type174 { get; set; }
///
///
///
- public global::LabelStudio.KPIProjectSegment? Type175 { get; set; }
+ public global::LabelStudio.KPIDetailResponse? Type175 { get; set; }
///
///
///
- public global::LabelStudio.KPIUserSegment? Type176 { get; set; }
+ public global::LabelStudio.KPIProjectSegment? Type176 { get; set; }
///
///
///
- public global::LabelStudio.KPIMatrixSegment? Type177 { get; set; }
+ public global::LabelStudio.KPIUserSegment? Type177 { get; set; }
///
///
///
- public global::LabelStudio.KPIProjectMatrixSegment? Type178 { get; set; }
+ public global::LabelStudio.KPIMatrixSegment? Type178 { get; set; }
///
///
///
- public global::LabelStudio.SegmentationEnum? Type179 { get; set; }
+ public global::LabelStudio.KPIProjectMatrixSegment? Type179 { get; set; }
///
///
///
- public global::LabelStudio.KPITimeSegment? Type180 { get; set; }
+ public global::LabelStudio.SegmentationEnum? Type180 { get; set; }
///
///
///
- public global::LabelStudio.KPIValue? Type181 { get; set; }
+ public global::LabelStudio.KPITimeSegment? Type181 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type182 { get; set; }
+ public global::LabelStudio.KPIValue? Type182 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type183 { get; set; }
+ public global::System.Collections.Generic.IList? Type183 { get; set; }
///
///
///
- public global::LabelStudio.KPIUserInfo? Type184 { get; set; }
+ public global::System.Collections.Generic.IList? Type184 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type185 { get; set; }
+ public global::LabelStudio.KPIUserInfo? Type185 { get; set; }
///
///
///
- public global::LabelStudio.KPIMetadata? Type186 { get; set; }
+ public global::System.Collections.Generic.IList>? Type186 { get; set; }
///
///
///
- public global::LabelStudio.KPIProjectInfo? Type187 { get; set; }
+ public global::LabelStudio.KPIMetadata? Type187 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type188 { get; set; }
+ public global::LabelStudio.KPIProjectInfo? Type188 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type189 { get; set; }
+ public global::System.Collections.Generic.IList? Type189 { get; set; }
///
///
///
- public global::LabelStudio.OneOf? Type190 { get; set; }
+ public global::System.Collections.Generic.IList>? Type190 { get; set; }
///
///
///
- public global::LabelStudio.LSAPITokenBlacklistRequest? Type191 { get; set; }
+ public global::LabelStudio.OneOf? Type191 { get; set; }
///
///
///
- public global::LabelStudio.LSAPITokenRotateRequest? Type192 { get; set; }
+ public global::LabelStudio.LSAPITokenBlacklistRequest? Type192 { get; set; }
///
///
///
- public global::LabelStudio.LSEAPITokenCreate? Type193 { get; set; }
+ public global::LabelStudio.LSAPITokenRotateRequest? Type193 { get; set; }
///
///
///
- public global::LabelStudio.LSEAPITokenList? Type194 { get; set; }
+ public global::LabelStudio.LSEAPITokenCreate? Type194 { get; set; }
///
///
///
- public global::LabelStudio.LSEJWTSettings? Type195 { get; set; }
+ public global::LabelStudio.LSEAPITokenList? Type195 { get; set; }
///
///
///
- public global::LabelStudio.LSEJWTSettingsRequest? Type196 { get; set; }
+ public global::LabelStudio.LSEJWTSettings? Type196 { get; set; }
///
///
///
- public global::LabelStudio.LSEKeyIndicatorValue? Type197 { get; set; }
+ public global::LabelStudio.LSEJWTSettingsRequest? Type197 { get; set; }
///
///
///
- public global::LabelStudio.Label? Type198 { get; set; }
+ public global::LabelStudio.LSEKeyIndicatorValue? Type198 { get; set; }
///
///
///
- public global::LabelStudio.LabelBulkUpdateRequest? Type199 { get; set; }
+ public global::LabelStudio.Label? Type199 { get; set; }
///
///
///
- public global::LabelStudio.LabelBulkUpdateResponse? Type200 { get; set; }
+ public global::LabelStudio.LabelBulkUpdateRequest? Type200 { get; set; }
///
///
///
- public global::LabelStudio.LabelCreate? Type201 { get; set; }
+ public global::LabelStudio.LabelBulkUpdateResponse? Type201 { get; set; }
///
///
///
- public global::LabelStudio.LabelCreateRequest? Type202 { get; set; }
+ public global::LabelStudio.LabelCreate? Type202 { get; set; }
///
///
///
- public global::LabelStudio.LabelDistributionCountsResponse? Type203 { get; set; }
+ public global::LabelStudio.LabelCreateRequest? Type203 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type204 { get; set; }
+ public global::LabelStudio.LabelDistributionCountsResponse? Type204 { get; set; }
///
///
///
- public global::LabelStudio.LabelDistributionCountsRow? Type205 { get; set; }
+ public global::System.Collections.Generic.IList? Type205 { get; set; }
///
///
///
- public global::LabelStudio.LabelDistributionCountsTotals? Type206 { get; set; }
+ public global::LabelStudio.LabelDistributionCountsRow? Type206 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type207 { get; set; }
+ public global::LabelStudio.LabelDistributionCountsTotals? Type207 { get; set; }
///
///
///
- public global::LabelStudio.LabelDistributionStructureDimension? Type208 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type208 { get; set; }
///
///
///
- public global::LabelStudio.LabelDistributionStructureResponse? Type209 { get; set; }
+ public global::LabelStudio.LabelDistributionStructureDimension? Type209 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type210 { get; set; }
+ public global::LabelStudio.LabelDistributionStructureResponse? Type210 { get; set; }
///
///
///
- public global::LabelStudio.LabelLink? Type211 { get; set; }
+ public global::System.Collections.Generic.IList? Type211 { get; set; }
///
///
///
- public global::LabelStudio.LabelLinkRequest? Type212 { get; set; }
+ public global::LabelStudio.LabelLink? Type212 { get; set; }
///
///
///
- public global::LabelStudio.LearningProgressResponse? Type213 { get; set; }
+ public global::LabelStudio.LabelLinkRequest? Type213 { get; set; }
///
///
///
- public global::LabelStudio.LearningProgressUpdateRequest? Type214 { get; set; }
+ public global::LabelStudio.LearningProgressResponse? Type214 { get; set; }
///
///
///
- public global::LabelStudio.LearningResource? Type215 { get; set; }
+ public global::LabelStudio.LearningProgressUpdateRequest? Type215 { get; set; }
///
///
///
- public global::LabelStudio.LearningResourceAssignmentSummary? Type216 { get; set; }
+ public global::LabelStudio.LearningResource? Type216 { get; set; }
///
///
///
- public global::LabelStudio.LearningResourceCreate? Type217 { get; set; }
+ public global::LabelStudio.LearningResourceAssignmentSummary? Type217 { get; set; }
///
///
///
- public global::LabelStudio.LearningResourceCreateRequest? Type218 { get; set; }
+ public global::LabelStudio.LearningResourceCreate? Type218 { get; set; }
///
///
///
- public global::LabelStudio.LearningResourceDetail? Type219 { get; set; }
+ public global::LabelStudio.LearningResourceCreateRequest? Type219 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type220 { get; set; }
+ public global::LabelStudio.LearningResourceDetail? Type220 { get; set; }
///
///
///
- public global::LabelStudio.LearningResourceRequest? Type221 { get; set; }
+ public global::System.Collections.Generic.IList? Type221 { get; set; }
///
///
///
- public global::LabelStudio.LearningResourceUpdate? Type222 { get; set; }
+ public global::LabelStudio.LearningResourceRequest? Type222 { get; set; }
///
///
///
- public global::LabelStudio.LearningResourceUploadResponse? Type223 { get; set; }
+ public global::LabelStudio.LearningResourceUpdate? Type223 { get; set; }
///
///
///
- public global::LabelStudio.LocalFilesExportStorage? Type224 { get; set; }
+ public global::LabelStudio.LearningResourceUploadResponse? Type224 { get; set; }
///
///
///
- public global::LabelStudio.LocalFilesImportStorage? Type225 { get; set; }
+ public global::LabelStudio.LocalFilesExportStorage? Type225 { get; set; }
///
///
///
- public global::LabelStudio.LseAnnotationFilterOptions? Type226 { get; set; }
+ public global::LabelStudio.LocalFilesImportStorage? Type226 { get; set; }
///
///
///
- public global::LabelStudio.LseAnnotationFilterOptionsRequest? Type227 { get; set; }
+ public global::LabelStudio.LseAnnotationFilterOptions? Type227 { get; set; }
///
///
///
- public global::LabelStudio.LseExportCreate? Type228 { get; set; }
+ public global::LabelStudio.LseAnnotationFilterOptionsRequest? Type228 { get; set; }
///
///
///
- public global::LabelStudio.SerializationOptions? Type229 { get; set; }
+ public global::LabelStudio.LseExportCreate? Type229 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskFilterOptions? Type230 { get; set; }
+ public global::LabelStudio.SerializationOptions? Type230 { get; set; }
///
///
///
- public global::LabelStudio.LseExportCreateRequest? Type231 { get; set; }
+ public global::LabelStudio.LseTaskFilterOptions? Type231 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type232 { get; set; }
+ public global::LabelStudio.LseExportCreateRequest? Type232 { get; set; }
///
///
///
- public global::LabelStudio.SerializationOptionsRequest? Type233 { get; set; }
+ public global::System.Collections.Generic.IList? Type233 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskFilterOptionsRequest? Type234 { get; set; }
+ public global::LabelStudio.SerializationOptionsRequest? Type234 { get; set; }
///
///
///
- public global::LabelStudio.LseFields? Type235 { get; set; }
+ public global::LabelStudio.LseTaskFilterOptionsRequest? Type235 { get; set; }
///
///
///
- public global::LabelStudio.OnboardingStateEnum? Type236 { get; set; }
+ public global::LabelStudio.LseFields? Type236 { get; set; }
///
///
///
- public global::LabelStudio.TrialRoleEnum? Type237 { get; set; }
+ public global::LabelStudio.OnboardingStateEnum? Type237 { get; set; }
///
///
///
- public global::LabelStudio.LseFieldsRequest? Type238 { get; set; }
+ public global::LabelStudio.TrialRoleEnum? Type238 { get; set; }
///
///
///
- public global::LabelStudio.LseInterface? Type239 { get; set; }
+ public global::LabelStudio.LseFieldsRequest? Type239 { get; set; }
///
///
///
- public global::LabelStudio.LseInterfaceAppendVersionRequest? Type240 { get; set; }
+ public global::LabelStudio.LseInterface? Type240 { get; set; }
///
///
///
- public global::LabelStudio.LseInterfaceAppendVersionsRequest? Type241 { get; set; }
+ public global::LabelStudio.LseInterfaceAppendVersionRequest? Type241 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type242 { get; set; }
+ public global::LabelStudio.LseInterfaceAppendVersionsRequest? Type242 { get; set; }
///
///
///
- public global::LabelStudio.LseInterfaceList? Type243 { get; set; }
+ public global::System.Collections.Generic.IList? Type243 { get; set; }
///
///
///
- public global::LabelStudio.LseInterfaceRequest? Type244 { get; set; }
+ public global::LabelStudio.LseInterfaceList? Type244 { get; set; }
///
///
///
- public global::LabelStudio.LseInterfaceVersionDescriptionRequest? Type245 { get; set; }
+ public global::LabelStudio.LseInterfaceRequest? Type245 { get; set; }
///
///
///
- public global::LabelStudio.LseInterfaceVersionIdRequest? Type246 { get; set; }
+ public global::LabelStudio.LseInterfaceVersionDescriptionRequest? Type246 { get; set; }
///
///
///
- public global::LabelStudio.LseOrganization? Type247 { get; set; }
+ public global::LabelStudio.LseInterfaceVersionIdRequest? Type247 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationBilling? Type248 { get; set; }
+ public global::LabelStudio.LseOrganization? Type248 { get; set; }
///
///
///
- public global::LabelStudio.LseOrganizationMemberList? Type249 { get; set; }
+ public global::LabelStudio.OrganizationBilling? Type249 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type250 { get; set; }
+ public global::LabelStudio.LseOrganizationMemberList? Type250 { get; set; }
///
///
///
- public global::LabelStudio.LseOrganizationMemberListContributedToProject? Type251 { get; set; }
+ public global::System.Collections.Generic.IList? Type251 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type252 { get; set; }
+ public global::LabelStudio.LseOrganizationMemberListContributedToProject? Type252 { get; set; }
///
///
///
- public global::LabelStudio.LseOrganizationMemberListCreatedProject? Type253 { get; set; }
+ public global::System.Collections.Generic.IList? Type253 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type254 { get; set; }
+ public global::LabelStudio.LseOrganizationMemberListCreatedProject? Type254 { get; set; }
///
///
///
- public global::LabelStudio.SimpleOrganizationMemberTag? Type255 { get; set; }
+ public global::System.Collections.Generic.IList? Type255 { get; set; }
///
///
///
- public global::LabelStudio.LseUserOrganizationMemberList? Type256 { get; set; }
+ public global::LabelStudio.SimpleOrganizationMemberTag? Type256 { get; set; }
///
///
///
- public global::LabelStudio.LseProject? Type257 { get; set; }
+ public global::LabelStudio.LseUserOrganizationMemberList? Type257 { get; set; }
///
///
///
- public global::LabelStudio.LseProjectCounts? Type258 { get; set; }
+ public global::LabelStudio.LseProject? Type258 { get; set; }
///
///
///
- public global::LabelStudio.LseProjectCreate? Type259 { get; set; }
+ public global::LabelStudio.LseProjectCounts? Type259 { get; set; }
///
///
///
- public global::LabelStudio.LseProjectCreateRequest? Type260 { get; set; }
+ public global::LabelStudio.LseProjectCreate? Type260 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type261 { get; set; }
+ public global::LabelStudio.LseProjectCreateRequest? Type261 { get; set; }
///
///
///
- public global::LabelStudio.LseProjectParams? Type262 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type262 { get; set; }
///
///
///
- public global::LabelStudio.LseProjectParamsRequest? Type263 { get; set; }
+ public global::LabelStudio.LseProjectParams? Type263 { get; set; }
///
///
///
- public global::LabelStudio.LseProjectResponse? Type264 { get; set; }
+ public global::LabelStudio.LseProjectParamsRequest? Type264 { get; set; }
///
///
///
- public global::LabelStudio.LseProjectStateResponse? Type265 { get; set; }
+ public global::LabelStudio.LseProjectResponse? Type265 { get; set; }
///
///
///
- public global::LabelStudio.LseS3ExportStorage? Type266 { get; set; }
+ public global::LabelStudio.LseProjectStateResponse? Type266 { get; set; }
///
///
///
- public global::LabelStudio.LseS3ExportStorageRequest? Type267 { get; set; }
+ public global::LabelStudio.LseS3ExportStorage? Type267 { get; set; }
///
///
///
- public global::LabelStudio.LseS3ImportStorage? Type268 { get; set; }
+ public global::LabelStudio.LseS3ExportStorageRequest? Type268 { get; set; }
///
///
///
- public global::LabelStudio.LseS3ImportStorageRequest? Type269 { get; set; }
+ public global::LabelStudio.LseS3ImportStorage? Type269 { get; set; }
///
///
///
- public global::LabelStudio.LseTask? Type270 { get; set; }
+ public global::LabelStudio.LseS3ImportStorageRequest? Type270 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type271 { get; set; }
+ public global::LabelStudio.LseTask? Type271 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskDraft? Type272 { get; set; }
+ public global::System.Collections.Generic.IList? Type272 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type273 { get; set; }
+ public global::LabelStudio.LseTaskDraft? Type273 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskPrediction? Type274 { get; set; }
+ public global::System.Collections.Generic.IList? Type274 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskRequest? Type275 { get; set; }
+ public global::LabelStudio.LseTaskPrediction? Type275 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskSerializerForAnnotators? Type276 { get; set; }
+ public global::LabelStudio.LseTaskRequest? Type276 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type277 { get; set; }
+ public global::LabelStudio.LseTaskSerializerForAnnotators? Type277 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskSerializerForAnnotatorsDraft? Type278 { get; set; }
+ public global::System.Collections.Generic.IList? Type278 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type279 { get; set; }
+ public global::LabelStudio.LseTaskSerializerForAnnotatorsDraft? Type279 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskSerializerForAnnotatorsPrediction? Type280 { get; set; }
+ public global::System.Collections.Generic.IList? Type280 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskSerializerForReviewers? Type281 { get; set; }
+ public global::LabelStudio.LseTaskSerializerForAnnotatorsPrediction? Type281 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type282 { get; set; }
+ public global::LabelStudio.LseTaskSerializerForReviewers? Type282 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskSerializerForReviewersDraft? Type283 { get; set; }
+ public global::System.Collections.Generic.IList? Type283 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type284 { get; set; }
+ public global::LabelStudio.LseTaskSerializerForReviewersDraft? Type284 { get; set; }
///
///
///
- public global::LabelStudio.LseTaskSerializerForReviewersPrediction? Type285 { get; set; }
+ public global::System.Collections.Generic.IList? Type285 { get; set; }
///
///
///
- public global::System.Collections.Generic.Dictionary? Type286 { get; set; }
+ public global::LabelStudio.LseTaskSerializerForReviewersPrediction? Type286 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type287 { get; set; }
+ public global::System.Collections.Generic.Dictionary? Type287 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMembership? Type288 { get; set; }
+ public global::System.Collections.Generic.IList? Type288 { get; set; }
///
///
///
- public global::LabelStudio.LseUserAPI? Type289 { get; set; }
+ public global::LabelStudio.OrganizationMembership? Type289 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type290 { get; set; }
+ public global::LabelStudio.LseUserAPI? Type290 { get; set; }
///
///
///
- public global::LabelStudio.LseUserOrganizationMemberListContributedToProject? Type291 { get; set; }
+ public global::System.Collections.Generic.IList? Type291 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type292 { get; set; }
+ public global::LabelStudio.LseUserOrganizationMemberListContributedToProject? Type292 { get; set; }
///
///
///
- public global::LabelStudio.LseUserOrganizationMemberListCreatedProject? Type293 { get; set; }
+ public global::System.Collections.Generic.IList? Type293 { get; set; }
///
///
///
- public global::LabelStudio.MLBackend? Type294 { get; set; }
+ public global::LabelStudio.LseUserOrganizationMemberListCreatedProject? Type294 { get; set; }
///
///
///
- public global::LabelStudio.StateEnum? Type295 { get; set; }
+ public global::LabelStudio.MLBackend? Type295 { get; set; }
///
///
///
- public global::LabelStudio.MLBackendRequest? Type296 { get; set; }
+ public global::LabelStudio.StateEnum? Type296 { get; set; }
///
///
///
- public global::LabelStudio.MLInteractiveAnnotatingRequestRequest? Type297 { get; set; }
+ public global::LabelStudio.MLBackendRequest? Type297 { get; set; }
///
///
///
- public global::LabelStudio.MaybeExpandedComment? Type298 { get; set; }
+ public global::LabelStudio.MLInteractiveAnnotatingRequestRequest? Type298 { get; set; }
///
///
///
- public global::LabelStudio.MetricParam? Type299 { get; set; }
+ public global::LabelStudio.MaybeExpandedComment? Type299 { get; set; }
///
///
///
- public global::LabelStudio.MetricParamUpdateRequest? Type300 { get; set; }
+ public global::LabelStudio.MetricParam? Type300 { get; set; }
///
///
///
- public global::LabelStudio.ModelInterface? Type301 { get; set; }
+ public global::LabelStudio.MetricParamUpdateRequest? Type301 { get; set; }
///
///
///
- public global::LabelStudio.SkillNameEnum? Type302 { get; set; }
+ public global::LabelStudio.ModelInterface? Type302 { get; set; }
///
///
///
- public global::LabelStudio.ModelInterfaceRequest? Type303 { get; set; }
+ public global::LabelStudio.SkillNameEnum? Type303 { get; set; }
///
///
///
- public global::LabelStudio.ModelInterfaceSerializerGET? Type304 { get; set; }
+ public global::LabelStudio.ModelInterfaceRequest? Type304 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type305 { get; set; }
+ public global::LabelStudio.ModelInterfaceSerializerGET? Type305 { get; set; }
///
///
///
- public global::LabelStudio.ModelProviderConnection? Type306 { get; set; }
+ public global::System.Collections.Generic.IList? Type306 { get; set; }
///
///
///
- public global::LabelStudio.ProviderEnum? Type307 { get; set; }
+ public global::LabelStudio.ModelProviderConnection? Type307 { get; set; }
///
///
///
- public global::LabelStudio.ScopeEnum? Type308 { get; set; }
+ public global::LabelStudio.ProviderEnum? Type308 { get; set; }
///
///
///
- public global::LabelStudio.ModelProviderConnectionRequest? Type309 { get; set; }
+ public global::LabelStudio.ScopeEnum? Type309 { get; set; }
///
///
///
- public global::LabelStudio.ModelRun? Type310 { get; set; }
+ public global::LabelStudio.ModelProviderConnectionRequest? Type310 { get; set; }
///
///
///
- public global::LabelStudio.ProjectSubsetEnum? Type311 { get; set; }
+ public global::LabelStudio.ModelRun? Type311 { get; set; }
///
///
///
- public global::LabelStudio.ModelRunStatusEnum? Type312 { get; set; }
+ public global::LabelStudio.ProjectSubsetEnum? Type312 { get; set; }
///
///
///
- public global::LabelStudio.ModelRunRequest? Type313 { get; set; }
+ public global::LabelStudio.ModelRunStatusEnum? Type313 { get; set; }
///
///
///
- public global::LabelStudio.OperatorEnum? Type314 { get; set; }
+ public global::LabelStudio.ModelRunRequest? Type314 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationId? Type315 { get; set; }
+ public global::LabelStudio.OperatorEnum? Type315 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationInvite? Type316 { get; set; }
+ public global::LabelStudio.OrganizationId? Type316 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMember? Type317 { get; set; }
+ public global::LabelStudio.OrganizationInvite? Type317 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type318 { get; set; }
+ public global::LabelStudio.OrganizationMember? Type318 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberContributedToProject? Type319 { get; set; }
+ public global::System.Collections.Generic.IList? Type319 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type320 { get; set; }
+ public global::LabelStudio.OrganizationMemberContributedToProject? Type320 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberCreatedProject? Type321 { get; set; }
+ public global::System.Collections.Generic.IList? Type321 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberTag? Type322 { get; set; }
+ public global::LabelStudio.OrganizationMemberCreatedProject? Type322 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberTagBulkCreateRequest? Type323 { get; set; }
+ public global::LabelStudio.OrganizationMemberTag? Type323 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberTagImportCreateRequest? Type324 { get; set; }
+ public global::LabelStudio.OrganizationMemberTagBulkCreateRequest? Type324 { get; set; }
///
///
///
- public byte[]? Type325 { get; set; }
+ public global::LabelStudio.OrganizationMemberTagImportCreateRequest? Type325 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberTagImportStatus? Type326 { get; set; }
+ public byte[]? Type326 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberTagImportStatusStatusEnum? Type327 { get; set; }
+ public global::LabelStudio.OrganizationMemberTagImportStatus? Type327 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMemberTagRequest? Type328 { get; set; }
+ public global::LabelStudio.OrganizationMemberTagImportStatusStatusEnum? Type328 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationMembershipRequest? Type329 { get; set; }
+ public global::LabelStudio.OrganizationMemberTagRequest? Type329 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationPermission? Type330 { get; set; }
+ public global::LabelStudio.OrganizationMembershipRequest? Type330 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type331 { get; set; }
+ public global::LabelStudio.OrganizationPermission? Type331 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationPermissionRoleEnum? Type332 { get; set; }
+ public global::System.Collections.Generic.IList? Type332 { get; set; }
///
///
///
- public global::LabelStudio.OrganizationPermissionRequest? Type333 { get; set; }
+ public global::LabelStudio.OrganizationPermissionRoleEnum? Type333 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedAllRolesProjectListList? Type334 { get; set; }
+ public global::System.Collections.Generic.IList? Type334 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type335 { get; set; }
+ public global::LabelStudio.OrganizationPermissionRequest? Type335 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedAnnotationHistoryList? Type336 { get; set; }
+ public global::LabelStudio.PaginatedAllRolesProjectListList? Type336 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type337 { get; set; }
+ public global::System.Collections.Generic.IList? Type337 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedCertificateList? Type338 { get; set; }
+ public global::LabelStudio.PaginatedAnnotationHistoryList? Type338 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type339 { get; set; }
+ public global::System.Collections.Generic.IList? Type339 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedCourseModuleList? Type340 { get; set; }
+ public global::LabelStudio.PaginatedCertificateList? Type340 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLabelCreateList? Type341 { get; set; }
+ public global::System.Collections.Generic.IList? Type341 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type342 { get; set; }
+ public global::LabelStudio.PaginatedCourseModuleList? Type342 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLabelLinkList? Type343 { get; set; }
+ public global::LabelStudio.PaginatedLabelCreateList? Type343 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type344 { get; set; }
+ public global::System.Collections.Generic.IList? Type344 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLabelList? Type345 { get; set; }
+ public global::LabelStudio.PaginatedLabelLinkList? Type345 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type346 { get; set; }
+ public global::System.Collections.Generic.IList? Type346 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLearningResourceList? Type347 { get; set; }
+ public global::LabelStudio.PaginatedLabelList? Type347 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type348 { get; set; }
+ public global::System.Collections.Generic.IList? Type348 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLseInterfaceListList? Type349 { get; set; }
+ public global::LabelStudio.PaginatedLearningResourceList? Type349 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type350 { get; set; }
+ public global::System.Collections.Generic.IList? Type350 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLseOrganizationMemberListList? Type351 { get; set; }
+ public global::LabelStudio.PaginatedLseInterfaceListList? Type351 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type352 { get; set; }
+ public global::System.Collections.Generic.IList? Type352 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLseProjectCountsList? Type353 { get; set; }
+ public global::LabelStudio.PaginatedLseOrganizationMemberListList? Type353 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type354 { get; set; }
+ public global::System.Collections.Generic.IList? Type354 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedLseUserList? Type355 { get; set; }
+ public global::LabelStudio.PaginatedLseProjectCountsList? Type355 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type356 { get; set; }
+ public global::System.Collections.Generic.IList? Type356 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedModelInterfaceSerializerGETList? Type357 { get; set; }
+ public global::LabelStudio.PaginatedLseUserList? Type357 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type358 { get; set; }
+ public global::System.Collections.Generic.IList? Type358 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedOrganizationMemberTagList? Type359 { get; set; }
+ public global::LabelStudio.PaginatedModelInterfaceSerializerGETList? Type359 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type360 { get; set; }
+ public global::System.Collections.Generic.IList? Type360 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedPaginatedProjectMemberList? Type361 { get; set; }
+ public global::LabelStudio.PaginatedOrganizationMemberTagList? Type361 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type362 { get; set; }
+ public global::System.Collections.Generic.IList? Type362 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedProjectMember? Type363 { get; set; }
+ public global::LabelStudio.PaginatedPaginatedProjectMemberList? Type363 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedProjectSubsetTasksResponseList? Type364 { get; set; }
+ public global::System.Collections.Generic.IList? Type364 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type365 { get; set; }
+ public global::LabelStudio.PaginatedProjectMember? Type365 { get; set; }
///
///
///
- public global::LabelStudio.ProjectSubsetTasksResponse? Type366 { get; set; }
+ public global::LabelStudio.PaginatedProjectSubsetTasksResponseList? Type366 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedRoleBasedTaskList? Type367 { get; set; }
+ public global::System.Collections.Generic.IList? Type367 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type368 { get; set; }
+ public global::LabelStudio.ProjectSubsetTasksResponse? Type368 { get; set; }
///
///
///
- public global::LabelStudio.RoleBasedTask? Type369 { get; set; }
+ public global::LabelStudio.PaginatedRoleBasedTaskList? Type369 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedStateModelList? Type370 { get; set; }
+ public global::System.Collections.Generic.IList? Type370 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type371 { get; set; }
+ public global::LabelStudio.RoleBasedTask? Type371 { get; set; }
///
///
///
- public global::LabelStudio.PaginatedUserLearningProgressListList? Type372 { get; set; }
+ public global::LabelStudio.PaginatedStateModelList? Type372 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type373 { get; set; }
+ public global::System.Collections.Generic.IList? Type373 { get; set; }
///
///
///
- public global::LabelStudio.UserLearningProgressList? Type374 { get; set; }
+ public global::LabelStudio.PaginatedUserLearningProgressListList? Type374 { get; set; }
///
///
///
- public global::LabelStudio.PatchedAnalyticsViewRequest? Type375 { get; set; }
+ public global::System.Collections.Generic.IList? Type375 { get; set; }
///
///
///
- public global::LabelStudio.PatchedAnnotationReviewRequest? Type376 { get; set; }
+ public global::LabelStudio.UserLearningProgressList? Type376 { get; set; }
///
///
///
- public global::LabelStudio.PatchedAzureDatasetStorageRequest? Type377 { get; set; }
+ public global::LabelStudio.PatchedAnalyticsViewRequest? Type377 { get; set; }
///
///
///
- public global::LabelStudio.PatchedAzureServicePrincipalExportStorageRequest? Type378 { get; set; }
+ public global::LabelStudio.PatchedAnnotationReviewRequest? Type378 { get; set; }
///
///
///
- public global::LabelStudio.PatchedAzureServicePrincipalImportStorageRequest? Type379 { get; set; }
+ public global::LabelStudio.PatchedAzureDatasetStorageRequest? Type379 { get; set; }
///
///
///
- public global::LabelStudio.PatchedBlueprintUpdateRequest? Type380 { get; set; }
+ public global::LabelStudio.PatchedAzureServicePrincipalExportStorageRequest? Type380 { get; set; }
///
///
///
- public global::LabelStudio.PatchedCommentRequest? Type381 { get; set; }
+ public global::LabelStudio.PatchedAzureServicePrincipalImportStorageRequest? Type381 { get; set; }
///
///
///
- public global::LabelStudio.PatchedDatabricksExportStorageRequest? Type382 { get; set; }
+ public global::LabelStudio.PatchedBlueprintUpdateRequest? Type382 { get; set; }
///
///
///
- public global::LabelStudio.PatchedDatabricksImportStorageRequest? Type383 { get; set; }
+ public global::LabelStudio.PatchedCommentRequest? Type383 { get; set; }
///
///
///
- public global::LabelStudio.PatchedDatasetRequest? Type384 { get; set; }
+ public global::LabelStudio.PatchedDatabricksExportStorageRequest? Type384 { get; set; }
///
///
///
- public global::LabelStudio.PatchedDatasetViewRequest? Type385 { get; set; }
+ public global::LabelStudio.PatchedDatabricksImportStorageRequest? Type385 { get; set; }
///
///
///
- public global::LabelStudio.PatchedDefaultRoleRequest? Type386 { get; set; }
+ public global::LabelStudio.PatchedDatasetRequest? Type386 { get; set; }
///
///
///
- public global::LabelStudio.PatchedDimensionRequest? Type387 { get; set; }
+ public global::LabelStudio.PatchedDatasetViewRequest? Type387 { get; set; }
///
///
///
- public global::LabelStudio.PatchedFewShotExampleRequest? Type388 { get; set; }
+ public global::LabelStudio.PatchedDefaultRoleRequest? Type388 { get; set; }
///
///
///
- public global::LabelStudio.PatchedFileUploadRequest? Type389 { get; set; }
+ public global::LabelStudio.PatchedDimensionRequest? Type389 { get; set; }
///
///
///
- public global::LabelStudio.PatchedGCSDatasetStorageRequest? Type390 { get; set; }
+ public global::LabelStudio.PatchedFewShotExampleRequest? Type390 { get; set; }
///
///
///
- public global::LabelStudio.PatchedGCSSAExportStorageRequest? Type391 { get; set; }
+ public global::LabelStudio.PatchedFileUploadRequest? Type391 { get; set; }
///
///
///
- public global::LabelStudio.PatchedGCSSAImportStorageRequest? Type392 { get; set; }
+ public global::LabelStudio.PatchedGCSDatasetStorageRequest? Type392 { get; set; }
///
///
///
- public global::LabelStudio.PatchedGCSWIFExportStorageRequest? Type393 { get; set; }
+ public global::LabelStudio.PatchedGCSSAExportStorageRequest? Type393 { get; set; }
///
///
///
- public global::LabelStudio.PatchedGCSWIFImportStorageRequest? Type394 { get; set; }
+ public global::LabelStudio.PatchedGCSSAImportStorageRequest? Type394 { get; set; }
///
///
///
- public global::LabelStudio.PatchedHotkeysRequest? Type395 { get; set; }
+ public global::LabelStudio.PatchedGCSWIFExportStorageRequest? Type395 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLabelLinkRequest? Type396 { get; set; }
+ public global::LabelStudio.PatchedGCSWIFImportStorageRequest? Type396 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLabelRequest? Type397 { get; set; }
+ public global::LabelStudio.PatchedHotkeysRequest? Type397 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLearningResourceRequest? Type398 { get; set; }
+ public global::LabelStudio.PatchedLabelLinkRequest? Type398 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLearningResourceUpdateRequest? Type399 { get; set; }
+ public global::LabelStudio.PatchedLabelRequest? Type399 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLseInterfaceRequest? Type400 { get; set; }
+ public global::LabelStudio.PatchedLearningResourceRequest? Type400 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLseOrganizationSerializerUpdateRequest? Type401 { get; set; }
+ public global::LabelStudio.PatchedLearningResourceUpdateRequest? Type401 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type402 { get; set; }
+ public global::LabelStudio.PatchedLseInterfaceRequest? Type402 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLseProjectUpdateRequest? Type403 { get; set; }
+ public global::LabelStudio.PatchedLseOrganizationSerializerUpdateRequest? Type403 { get; set; }
///
///
///
- public global::LabelStudio.ReviewSettingsRequest? Type404 { get; set; }
+ public global::System.Collections.Generic.IList>? Type404 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLseS3ExportStorageRequest? Type405 { get; set; }
+ public global::LabelStudio.PatchedLseProjectUpdateRequest? Type405 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLseS3ImportStorageRequest? Type406 { get; set; }
+ public global::LabelStudio.ReviewSettingsRequest? Type406 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLseTaskRequest? Type407 { get; set; }
+ public global::LabelStudio.PatchedLseS3ExportStorageRequest? Type407 { get; set; }
///
///
///
- public global::LabelStudio.PatchedLseUserSerializerUpdateRequest? Type408 { get; set; }
+ public global::LabelStudio.PatchedLseS3ImportStorageRequest? Type408 { get; set; }
///
///
///
- public global::LabelStudio.PatchedModelInterfaceRequest? Type409 { get; set; }
+ public global::LabelStudio.PatchedLseTaskRequest? Type409 { get; set; }
///
///
///
- public global::LabelStudio.PatchedModelProviderConnectionRequest? Type410 { get; set; }
+ public global::LabelStudio.PatchedLseUserSerializerUpdateRequest? Type410 { get; set; }
///
///
///
- public global::LabelStudio.PatchedOrganizationMemberCreateUpdateRequest? Type411 { get; set; }
+ public global::LabelStudio.PatchedModelInterfaceRequest? Type411 { get; set; }
///
///
///
- public global::LabelStudio.PatchedOrganizationMemberTagRequest? Type412 { get; set; }
+ public global::LabelStudio.PatchedModelProviderConnectionRequest? Type412 { get; set; }
///
///
///
- public global::LabelStudio.PatchedOrganizationPermissionRequest? Type413 { get; set; }
+ public global::LabelStudio.PatchedOrganizationMemberCreateUpdateRequest? Type413 { get; set; }
///
///
///
- public global::LabelStudio.PatchedPauseRequest? Type414 { get; set; }
+ public global::LabelStudio.PatchedOrganizationMemberTagRequest? Type414 { get; set; }
///
///
///
- public global::LabelStudio.ReasonEnum? Type415 { get; set; }
+ public global::LabelStudio.PatchedOrganizationPermissionRequest? Type415 { get; set; }
///
///
///
- public global::LabelStudio.PatchedProjectLearningAssignmentRequest? Type416 { get; set; }
+ public global::LabelStudio.PatchedPauseRequest? Type416 { get; set; }
///
///
///
- public global::LabelStudio.PatchedProjectTemplateRequest? Type417 { get; set; }
+ public global::LabelStudio.ReasonEnum? Type417 { get; set; }
///
///
///
- public global::LabelStudio.PatchedS3DatasetStorageRequest? Type418 { get; set; }
+ public global::LabelStudio.PatchedProjectLearningAssignmentRequest? Type418 { get; set; }
///
///
///
- public global::LabelStudio.PatchedSessionTimeoutPolicyRequest? Type419 { get; set; }
+ public global::LabelStudio.PatchedProjectTemplateRequest? Type419 { get; set; }
///
///
///
- public global::LabelStudio.PatchedThirdPartyModelVersionRequest? Type420 { get; set; }
+ public global::LabelStudio.PatchedS3DatasetStorageRequest? Type420 { get; set; }
///
///
///
- public global::LabelStudio.PatchedWebhookSerializerForUpdateRequest? Type421 { get; set; }
+ public global::LabelStudio.PatchedSessionTimeoutPolicyRequest? Type421 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type422 { get; set; }
+ public global::LabelStudio.PatchedThirdPartyModelVersionRequest? Type422 { get; set; }
///
///
///
- public global::LabelStudio.PatchedWorkspaceRequest? Type423 { get; set; }
+ public global::LabelStudio.PatchedWebhookSerializerForUpdateRequest? Type423 { get; set; }
///
///
///
- public global::LabelStudio.Pause? Type424 { get; set; }
+ public global::System.Collections.Generic.IList? Type424 { get; set; }
///
///
///
- public global::LabelStudio.PauseRequest? Type425 { get; set; }
+ public global::LabelStudio.PatchedWorkspaceRequest? Type425 { get; set; }
///
///
///
- public global::LabelStudio.Prediction? Type426 { get; set; }
+ public global::LabelStudio.Pause? Type426 { get; set; }
///
///
///
- public global::LabelStudio.PredictionCountResponse? Type427 { get; set; }
+ public global::LabelStudio.PauseRequest? Type427 { get; set; }
///
///
///
- public global::LabelStudio.Project? Type428 { get; set; }
+ public global::LabelStudio.Prediction? Type428 { get; set; }
///
///
///
- public global::LabelStudio.ProjectAnnotationsBrowseItem? Type429 { get; set; }
+ public global::LabelStudio.PredictionCountResponse? Type429 { get; set; }
///
///
///
- public global::LabelStudio.ProjectAnnotationsBrowseResponse? Type430 { get; set; }
+ public global::LabelStudio.Project? Type430 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type431 { get; set; }
+ public global::LabelStudio.ProjectAnnotationsBrowseItem? Type431 { get; set; }
///
///
///
- public global::LabelStudio.ProjectDuplicateModeEnum? Type432 { get; set; }
+ public global::LabelStudio.ProjectAnnotationsBrowseResponse? Type432 { get; set; }
///
///
///
- public global::LabelStudio.ProjectDuplicateRequest? Type433 { get; set; }
+ public global::System.Collections.Generic.IList? Type433 { get; set; }
///
///
///
- public global::LabelStudio.ProjectGroup? Type434 { get; set; }
+ public global::LabelStudio.ProjectDuplicateModeEnum? Type434 { get; set; }
///
///
///
- public global::LabelStudio.ProjectGroupRoleEnum? Type435 { get; set; }
+ public global::LabelStudio.ProjectDuplicateRequest? Type435 { get; set; }
///
///
///
- public global::LabelStudio.ProjectGroupRequest? Type436 { get; set; }
+ public global::LabelStudio.ProjectGroup? Type436 { get; set; }
///
///
///
- public global::LabelStudio.ProjectImport? Type437 { get; set; }
+ public global::LabelStudio.ProjectGroupRoleEnum? Type437 { get; set; }
///
///
///
- public global::LabelStudio.ProjectLabelConfig? Type438 { get; set; }
+ public global::LabelStudio.ProjectGroupRequest? Type438 { get; set; }
///
///
///
- public global::LabelStudio.ProjectLabelConfigRequest? Type439 { get; set; }
+ public global::LabelStudio.ProjectImport? Type439 { get; set; }
///
///
///
- public global::LabelStudio.ProjectLearningAssignment? Type440 { get; set; }
+ public global::LabelStudio.ProjectLabelConfig? Type440 { get; set; }
///
///
///
- public global::LabelStudio.ProjectLearningAssignmentCreateRequest? Type441 { get; set; }
+ public global::LabelStudio.ProjectLabelConfigRequest? Type441 { get; set; }
///
///
///
- public global::LabelStudio.ProjectMember? Type442 { get; set; }
+ public global::LabelStudio.ProjectLearningAssignment? Type442 { get; set; }
///
///
///
- public global::LabelStudio.ProjectMemberBulkAssignRequest? Type443 { get; set; }
+ public global::LabelStudio.ProjectLearningAssignmentCreateRequest? Type443 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type444 { get; set; }
+ public global::LabelStudio.ProjectMember? Type444 { get; set; }
///
///
///
- public global::LabelStudio.ProjectMemberBulkAssignRolesRequest? Type445 { get; set; }
+ public global::LabelStudio.ProjectMemberBulkAssignRequest? Type445 { get; set; }
///
///
///
- public global::LabelStudio.ProjectMemberRequest? Type446 { get; set; }
+ public global::System.Collections.Generic.IList? Type446 { get; set; }
///
///
///
- public global::LabelStudio.ProjectReimport? Type447 { get; set; }
+ public global::LabelStudio.ProjectMemberBulkAssignRolesRequest? Type447 { get; set; }
///
///
///
- public global::LabelStudio.ProjectRole? Type448 { get; set; }
+ public global::LabelStudio.ProjectMemberBulkAssignResponse? Type448 { get; set; }
///
///
///
- public global::LabelStudio.ProjectRoleRequest? Type449 { get; set; }
+ public global::LabelStudio.ProjectMemberIdentityVerificationError? Type449 { get; set; }
///
///
///
- public global::LabelStudio.ProjectSubsetItem? Type450 { get; set; }
+ public global::LabelStudio.ProjectMemberRequest? Type450 { get; set; }
///
///
///
- public global::LabelStudio.ProjectSubsetTaskItem? Type451 { get; set; }
+ public global::LabelStudio.ProjectReimport? Type451 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type452 { get; set; }
+ public global::LabelStudio.ProjectRole? Type452 { get; set; }
///
///
///
- public global::LabelStudio.ProjectTemplate? Type453 { get; set; }
+ public global::LabelStudio.ProjectRoleRequest? Type453 { get; set; }
///
///
///
- public global::LabelStudio.ProjectTemplateRequest? Type454 { get; set; }
+ public global::LabelStudio.ProjectSubsetItem? Type454 { get; set; }
///
///
///
- public global::LabelStudio.PromptPreviewResponse? Type455 { get; set; }
+ public global::LabelStudio.ProjectSubsetTaskItem? Type455 { get; set; }
///
///
///
- public global::LabelStudio.PublishLearningResourceRequest? Type456 { get; set; }
+ public global::System.Collections.Generic.IList? Type456 { get; set; }
///
///
///
- public global::LabelStudio.RetakeScopeEnum? Type457 { get; set; }
+ public global::LabelStudio.ProjectTemplate? Type457 { get; set; }
///
///
///
- public global::LabelStudio.ReEvaluate? Type458 { get; set; }
+ public global::LabelStudio.ProjectTemplateRequest? Type458 { get; set; }
///
///
///
- public global::LabelStudio.ReEvaluateModeEnum? Type459 { get; set; }
+ public global::LabelStudio.PromptPreviewResponse? Type459 { get; set; }
///
///
///
- public global::LabelStudio.ReEvaluateRequest? Type460 { get; set; }
+ public global::LabelStudio.PublishLearningResourceRequest? Type460 { get; set; }
///
///
///
- public global::LabelStudio.RedisExportStorage? Type461 { get; set; }
+ public global::LabelStudio.RetakeScopeEnum? Type461 { get; set; }
///
///
///
- public global::LabelStudio.RedisImportStorage? Type462 { get; set; }
+ public global::LabelStudio.ReEvaluate? Type462 { get; set; }
///
///
///
- public global::LabelStudio.RefinePromptRequestRequest? Type463 { get; set; }
+ public global::LabelStudio.ReEvaluateModeEnum? Type463 { get; set; }
///
///
///
- public global::LabelStudio.RefinedPromptResponse? Type464 { get; set; }
+ public global::LabelStudio.ReEvaluateRequest? Type464 { get; set; }
///
///
///
- public global::LabelStudio.ThirdPartyModelVersion? Type465 { get; set; }
+ public global::LabelStudio.RedisExportStorage? Type465 { get; set; }
///
///
///
- public global::LabelStudio.RegressionSummary? Type466 { get; set; }
+ public global::LabelStudio.RedisImportStorage? Type466 { get; set; }
///
///
///
- public global::LabelStudio.RegressionsResponse? Type467 { get; set; }
+ public global::LabelStudio.RefinePromptRequestRequest? Type467 { get; set; }
///
///
///
- public global::LabelStudio.RequeueRejectedTasksModeEnum? Type468 { get; set; }
+ public global::LabelStudio.RefinedPromptResponse? Type468 { get; set; }
///
///
///
- public global::LabelStudio.ReviewCriteriaEnum? Type469 { get; set; }
+ public global::LabelStudio.ThirdPartyModelVersion? Type469 { get; set; }
///
///
///
- public global::LabelStudio.ReviewRoutingRule? Type470 { get; set; }
+ public global::LabelStudio.RegressionSummary? Type470 { get; set; }
///
///
///
- public global::LabelStudio.ReviewRoutingRuleRequestRequest? Type471 { get; set; }
+ public global::LabelStudio.RegressionsResponse? Type471 { get; set; }
///
///
///
- public global::LabelStudio.ReviewRoutingRulesReplaceRequest? Type472 { get; set; }
+ public global::LabelStudio.RequeueRejectedTasksModeEnum? Type472 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type473 { get; set; }
+ public global::LabelStudio.ReviewCriteriaEnum? Type473 { get; set; }
///
///
///
- public global::LabelStudio.ReviewSettingsSamplingEnum? Type474 { get; set; }
+ public global::LabelStudio.ReviewRoutingRule? Type474 { get; set; }
///
///
///
- public global::LabelStudio.RevokeCertificateRequest? Type475 { get; set; }
+ public global::LabelStudio.ReviewRoutingRuleRequestRequest? Type475 { get; set; }
///
///
///
- public global::LabelStudio.RevokeInviteRequest? Type476 { get; set; }
+ public global::LabelStudio.ReviewRoutingRulesReplaceRequest? Type476 { get; set; }
///
///
///
- public global::LabelStudio.S3DatasetStorage? Type477 { get; set; }
+ public global::System.Collections.Generic.IList? Type477 { get; set; }
///
///
///
- public global::LabelStudio.S3DatasetStorageRequest? Type478 { get; set; }
+ public global::LabelStudio.ReviewSettingsSamplingEnum? Type478 { get; set; }
///
///
///
- public global::LabelStudio.S3ExportStorage? Type479 { get; set; }
+ public global::LabelStudio.RevokeCertificateRequest? Type479 { get; set; }
///
///
///
- public global::LabelStudio.S3ImportStorage? Type480 { get; set; }
+ public global::LabelStudio.RevokeInviteRequest? Type480 { get; set; }
///
///
///
- public global::LabelStudio.SamlSettings? Type481 { get; set; }
+ public global::LabelStudio.S3DatasetStorage? Type481 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type482 { get; set; }
+ public global::LabelStudio.S3DatasetStorageRequest? Type482 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList>? Type483 { get; set; }
+ public global::LabelStudio.S3ExportStorage? Type483 { get; set; }
///
///
///
- public global::LabelStudio.SamlSettingsUpdate? Type484 { get; set; }
+ public global::LabelStudio.S3ImportStorage? Type484 { get; set; }
///
///
///
- public global::LabelStudio.SamlSettingsUpdateRequest? Type485 { get; set; }
+ public global::LabelStudio.SamlSettings? Type485 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type486 { get; set; }
+ public global::System.Collections.Generic.IList? Type486 { get; set; }
///
///
///
- public global::LabelStudio.ScimSettings? Type487 { get; set; }
+ public global::System.Collections.Generic.IList>? Type487 { get; set; }
///
///
///
- public global::LabelStudio.ScimSettingsUpdate? Type488 { get; set; }
+ public global::LabelStudio.SamlSettingsUpdate? Type488 { get; set; }
///
///
///
- public global::LabelStudio.ScimSettingsUpdateRequest? Type489 { get; set; }
+ public global::LabelStudio.SamlSettingsUpdateRequest? Type489 { get; set; }
///
///
///
- public global::LabelStudio.SendInviteRequest? Type490 { get; set; }
+ public global::System.Collections.Generic.IList? Type490 { get; set; }
///
///
///
- public global::LabelStudio.SerializationOption? Type491 { get; set; }
+ public global::LabelStudio.ScimSettings? Type491 { get; set; }
///
///
///
- public global::LabelStudio.SerializationOptionRequest? Type492 { get; set; }
+ public global::LabelStudio.ScimSettingsUpdate? Type492 { get; set; }
///
///
///
- public global::LabelStudio.SessionTimeoutPolicy? Type493 { get; set; }
+ public global::LabelStudio.ScimSettingsUpdateRequest? Type493 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillCancelResponse? Type494 { get; set; }
+ public global::LabelStudio.SendInviteRequest? Type494 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillErrorResponse? Type495 { get; set; }
+ public global::LabelStudio.SerializationOption? Type495 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillJobItem? Type496 { get; set; }
+ public global::LabelStudio.SerializationOptionRequest? Type496 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillJobItemResponse? Type497 { get; set; }
+ public global::LabelStudio.SessionTimeoutPolicy? Type497 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillProgress? Type498 { get; set; }
+ public global::LabelStudio.StateBackfillCancelResponse? Type498 { get; set; }
///
///
///
- public global::LabelStudio.StateTriggeredBy? Type499 { get; set; }
+ public global::LabelStudio.StateBackfillErrorResponse? Type499 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillJobListResponse? Type500 { get; set; }
+ public global::LabelStudio.StateBackfillJobItem? Type500 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type501 { get; set; }
+ public global::LabelStudio.StateBackfillJobItemResponse? Type501 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillOrgStatus? Type502 { get; set; }
+ public global::LabelStudio.StateBackfillProgress? Type502 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillResponse? Type503 { get; set; }
+ public global::LabelStudio.StateTriggeredBy? Type503 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type504 { get; set; }
+ public global::LabelStudio.StateBackfillJobListResponse? Type504 { get; set; }
///
///
///
- public global::LabelStudio.StateBackfillStatusResponse? Type505 { get; set; }
+ public global::System.Collections.Generic.IList? Type505 { get; set; }
///
///
///
- public global::LabelStudio.TriggeredBy2? Type506 { get; set; }
+ public global::LabelStudio.StateBackfillOrgStatus? Type506 { get; set; }
///
///
///
- public global::LabelStudio.TaskAgreementMatrixResponse? Type507 { get; set; }
+ public global::LabelStudio.StateBackfillResponse? Type507 { get; set; }
///
///
///
- public global::LabelStudio.TaskAssignment? Type508 { get; set; }
+ public global::System.Collections.Generic.IList? Type508 { get; set; }
///
///
///
- public global::LabelStudio.TypeEnum? Type509 { get; set; }
+ public global::LabelStudio.StateBackfillStatusResponse? Type509 { get; set; }
///
///
///
- public global::LabelStudio.TaskEvent? Type510 { get; set; }
+ public global::LabelStudio.TriggeredBy2? Type510 { get; set; }
///
///
///
- public global::LabelStudio.TaskEventRequest? Type511 { get; set; }
+ public global::LabelStudio.TaskAgreementMatrixResponse? Type511 { get; set; }
///
///
///
- public global::LabelStudio.TaskSimple? Type512 { get; set; }
+ public global::LabelStudio.TaskAssignment? Type512 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type513 { get; set; }
+ public global::LabelStudio.TypeEnum? Type513 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type514 { get; set; }
+ public global::LabelStudio.TaskEvent? Type514 { get; set; }
///
///
///
- public global::LabelStudio.ThirdPartyModelVersionRequest? Type515 { get; set; }
+ public global::LabelStudio.TaskEventRequest? Type515 { get; set; }
///
///
///
- public global::LabelStudio.TokenDetailError? Type516 { get; set; }
+ public global::LabelStudio.TaskSimple? Type516 { get; set; }
///
///
///
- public global::LabelStudio.TokenRefreshRequest? Type517 { get; set; }
+ public global::System.Collections.Generic.IList? Type517 { get; set; }
///
///
///
- public global::LabelStudio.TokenRefreshResponse? Type518 { get; set; }
+ public global::System.Collections.Generic.IList? Type518 { get; set; }
///
///
///
- public global::LabelStudio.TokenRotateResponse? Type519 { get; set; }
+ public global::LabelStudio.ThirdPartyModelVersionRequest? Type519 { get; set; }
///
///
///
- public global::LabelStudio.TryTaskRequestRequest? Type520 { get; set; }
+ public global::LabelStudio.TokenDetailError? Type520 { get; set; }
///
///
///
- public global::LabelStudio.TryTaskResponse? Type521 { get; set; }
+ public global::LabelStudio.TokenRefreshRequest? Type521 { get; set; }
///
///
///
- public global::LabelStudio.ValidateSamlDomainRequestRequest? Type522 { get; set; }
+ public global::LabelStudio.TokenRefreshResponse? Type522 { get; set; }
///
///
///
- public global::LabelStudio.ValidateSamlDomainResponse? Type523 { get; set; }
+ public global::LabelStudio.TokenRotateResponse? Type523 { get; set; }
///
///
///
- public global::LabelStudio.ValidateSamlMetadataUrlRequestRequest? Type524 { get; set; }
+ public global::LabelStudio.TryTaskRequestRequest? Type524 { get; set; }
///
///
///
- public global::LabelStudio.ValidateSamlMetadataUrlResponse? Type525 { get; set; }
+ public global::LabelStudio.TryTaskResponse? Type525 { get; set; }
///
///
///
- public global::LabelStudio.ValueCountsBackfillJob? Type526 { get; set; }
+ public global::LabelStudio.ValidateSamlDomainRequestRequest? Type526 { get; set; }
///
///
///
- public global::LabelStudio.VersionResponse? Type527 { get; set; }
+ public global::LabelStudio.ValidateSamlDomainResponse? Type527 { get; set; }
///
///
///
- public global::LabelStudio.View? Type528 { get; set; }
+ public global::LabelStudio.ValidateSamlMetadataUrlRequestRequest? Type528 { get; set; }
///
///
///
- public global::LabelStudio.ViewLockedBy? Type529 { get; set; }
+ public global::LabelStudio.ValidateSamlMetadataUrlResponse? Type529 { get; set; }
///
///
///
- public global::LabelStudio.ViewOrderRequest? Type530 { get; set; }
+ public global::LabelStudio.ValueCountsBackfillJob? Type530 { get; set; }
///
///
///
- public global::LabelStudio.Webhook? Type531 { get; set; }
+ public global::LabelStudio.VersionResponse? Type531 { get; set; }
///
///
///
- public global::LabelStudio.WebhookRequest? Type532 { get; set; }
+ public global::LabelStudio.View? Type532 { get; set; }
///
///
///
- public global::LabelStudio.WebhookSerializerForUpdate? Type533 { get; set; }
+ public global::LabelStudio.ViewLockedBy? Type533 { get; set; }
///
///
///
- public global::LabelStudio.WebhookSerializerForUpdateRequest? Type534 { get; set; }
+ public global::LabelStudio.ViewOrderRequest? Type534 { get; set; }
///
///
///
- public global::LabelStudio.WhoAmILseFields? Type535 { get; set; }
+ public global::LabelStudio.Webhook? Type535 { get; set; }
///
///
///
- public global::LabelStudio.WhoAmIUser? Type536 { get; set; }
+ public global::LabelStudio.WebhookRequest? Type536 { get; set; }
///
///
///
- public global::LabelStudio.Workspace? Type537 { get; set; }
+ public global::LabelStudio.WebhookSerializerForUpdate? Type537 { get; set; }
///
///
///
- public global::LabelStudio.WorkspaceMemberBulkAssignRequest? Type538 { get; set; }
+ public global::LabelStudio.WebhookSerializerForUpdateRequest? Type538 { get; set; }
///
///
///
- public global::LabelStudio.WorkspaceMemberCreate? Type539 { get; set; }
+ public global::LabelStudio.WhoAmILseFields? Type539 { get; set; }
///
///
///
- public global::LabelStudio.WorkspaceMemberCreateRequest? Type540 { get; set; }
+ public global::LabelStudio.WhoAmIUser? Type540 { get; set; }
///
///
///
- public global::LabelStudio.WorkspaceMemberList? Type541 { get; set; }
+ public global::LabelStudio.Workspace? Type541 { get; set; }
///
///
///
- public global::LabelStudio.WorkspaceProjectsRequest? Type542 { get; set; }
+ public global::LabelStudio.WorkspaceMemberBulkAssignRequest? Type542 { get; set; }
///
///
///
- public global::LabelStudio.WorkspaceRequest? Type543 { get; set; }
+ public global::LabelStudio.WorkspaceMemberCreate? Type543 { get; set; }
///
///
///
- public global::LabelStudio.ApiAnnotationsPartialUpdateRequest? Type544 { get; set; }
+ public global::LabelStudio.WorkspaceMemberCreateRequest? Type544 { get; set; }
///
///
///
- public global::LabelStudio.ApiDatasetsImportPartialUpdateRequest? Type545 { get; set; }
+ public global::LabelStudio.WorkspaceMemberList? Type545 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequest? Type546 { get; set; }
+ public global::LabelStudio.WorkspaceProjectsRequest? Type546 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestFilters? Type547 { get; set; }
+ public global::LabelStudio.WorkspaceRequest? Type547 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestFiltersConjunction? Type548 { get; set; }
+ public global::LabelStudio.ApiAnnotationsPartialUpdateRequest? Type548 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type549 { get; set; }
+ public global::LabelStudio.ApiDatasetsImportPartialUpdateRequest? Type549 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestFiltersItem? Type550 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequest? Type550 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestFiltersItemFilter? Type551 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestFilters? Type551 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestFiltersItemOperator? Type552 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestFiltersConjunction? Type552 { get; set; }
///
///
///
- public global::LabelStudio.OneOf? Type553 { get; set; }
+ public global::System.Collections.Generic.IList? Type553 { get; set; }
///
///
///
- public float? Type554 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestFiltersItem? Type554 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type555 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestFiltersItemFilter? Type555 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestOrderingItem? Type556 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestFiltersItemOperator? Type556 { get; set; }
///
///
///
- public global::LabelStudio.OneOf? Type557 { get; set; }
+ public global::LabelStudio.OneOf? Type557 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestSelectedItemsAllFalse? Type558 { get; set; }
+ public float? Type558 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateRequestSelectedItemsAllTrue? Type559 { get; set; }
+ public global::System.Collections.Generic.IList? Type559 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequest? Type560 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestOrderingItem? Type560 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequestData? Type561 { get; set; }
+ public global::LabelStudio.OneOf? Type561 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequestDataFilters? Type562 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestSelectedItemsAllFalse? Type562 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersConjunction? Type563 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateRequestSelectedItemsAllTrue? Type563 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type564 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequest? Type564 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersItem? Type565 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequestData? Type565 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersItemFilter? Type566 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequestDataFilters? Type566 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersItemOperator? Type567 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersConjunction? Type567 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type568 { get; set; }
+ public global::System.Collections.Generic.IList? Type568 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsCreateRequestDataOrderingItem? Type569 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersItem? Type569 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequest? Type570 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersItemFilter? Type570 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequestData? Type571 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequestDataFiltersItemOperator? Type571 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFilters? Type572 { get; set; }
+ public global::System.Collections.Generic.IList? Type572 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersConjunction? Type573 { get; set; }
+ public global::LabelStudio.ApiDmViewsCreateRequestDataOrderingItem? Type573 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type574 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequest? Type574 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersItem? Type575 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequestData? Type575 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersItemFilter? Type576 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFilters? Type576 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersItemOperator? Type577 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersConjunction? Type577 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type578 { get; set; }
+ public global::System.Collections.Generic.IList? Type578 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataOrderingItem? Type579 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersItem? Type579 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequest? Type580 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersItemFilter? Type580 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequestData? Type581 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataFiltersItemOperator? Type581 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequestDataFilters? Type582 { get; set; }
+ public global::System.Collections.Generic.IList? Type582 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersConjunction? Type583 { get; set; }
+ public global::LabelStudio.ApiDmViewsPartialUpdateRequestDataOrderingItem? Type583 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type584 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequest? Type584 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersItem? Type585 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequestData? Type585 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersItemFilter? Type586 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequestDataFilters? Type586 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersItemOperator? Type587 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersConjunction? Type587 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type588 { get; set; }
+ public global::System.Collections.Generic.IList? Type588 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmViewsUpdateRequestDataOrderingItem? Type589 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersItem? Type589 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type590 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersItemFilter? Type590 { get; set; }
///
///
///
- public global::LabelStudio.ApiLearningResourcesUserProgressImportCreateRequest? Type591 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequestDataFiltersItemOperator? Type591 { get; set; }
///
///
///
- public global::LabelStudio.ApiLlmOpenaiChatCompletionsCreateRequest? Type592 { get; set; }
+ public global::System.Collections.Generic.IList? Type592 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type593 { get; set; }
+ public global::LabelStudio.ApiDmViewsUpdateRequestDataOrderingItem? Type593 { get; set; }
///
///
///
- public global::LabelStudio.ApiLlmOpenaiChatCompletionsCreateRequestMessage? Type594 { get; set; }
+ public global::System.Collections.Generic.IList? Type594 { get; set; }
///
///
///
- public global::LabelStudio.ApiLlmOpenaiChatCompletionsCreateRequestMessageRole? Type595 { get; set; }
+ public global::LabelStudio.ApiLearningResourcesUserProgressImportCreateRequest? Type595 { get; set; }
///
///
///
- public global::LabelStudio.ApiMlCreateRequest? Type596 { get; set; }
+ public global::LabelStudio.ApiLlmOpenaiChatCompletionsCreateRequest? Type596 { get; set; }
///
///
///
- public global::LabelStudio.ApiMlCreateRequestAuthMethod? Type597 { get; set; }
+ public global::System.Collections.Generic.IList? Type597 { get; set; }
///
///
///
- public global::LabelStudio.ApiMlPartialUpdateRequest? Type598 { get; set; }
+ public global::LabelStudio.ApiLlmOpenaiChatCompletionsCreateRequestMessage? Type598 { get; set; }
///
///
///
- public global::LabelStudio.ApiMlPartialUpdateRequestAuthMethod? Type599 { get; set; }
+ public global::LabelStudio.ApiLlmOpenaiChatCompletionsCreateRequestMessageRole? Type599 { get; set; }
///
///
///
- public global::LabelStudio.ApiMlTrainCreateRequest? Type600 { get; set; }
+ public global::LabelStudio.ApiMlCreateRequest? Type600 { get; set; }
///
///
///
- public global::LabelStudio.ApiPredictionsCreateRequest? Type601 { get; set; }
+ public global::LabelStudio.ApiMlCreateRequestAuthMethod? Type601 { get; set; }
///
///
///
- public global::LabelStudio.ApiPredictionsPartialUpdateRequest? Type602 { get; set; }
+ public global::LabelStudio.ApiMlPartialUpdateRequest? Type602 { get; set; }
///
///
///
- public global::LabelStudio.ApiPredictionsUpdateRequest? Type603 { get; set; }
+ public global::LabelStudio.ApiMlPartialUpdateRequestAuthMethod? Type603 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectTemplatesCreateProjectCreateRequest? Type604 { get; set; }
+ public global::LabelStudio.ApiMlTrainCreateRequest? Type604 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type605 { get; set; }
+ public global::LabelStudio.ApiPredictionsCreateRequest? Type605 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequest? Type606 { get; set; }
+ public global::LabelStudio.ApiPredictionsPartialUpdateRequest? Type606 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFilters? Type607 { get; set; }
+ public global::LabelStudio.ApiPredictionsUpdateRequest? Type607 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersConjunction? Type608 { get; set; }
+ public global::LabelStudio.ApiProjectTemplatesCreateProjectCreateRequest? Type608 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type609 { get; set; }
+ public global::System.Collections.Generic.IList? Type609 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersItem? Type610 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequest? Type610 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersItemFilter? Type611 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFilters? Type611 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersItemOperator? Type612 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersConjunction? Type612 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllFalse? Type613 { get; set; }
+ public global::System.Collections.Generic.IList? Type613 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllTrue? Type614 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersItem? Type614 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestType? Type615 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersItemFilter? Type615 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesPartialUpdateRequest? Type616 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestFiltersItemOperator? Type616 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesPartialUpdateRequestType? Type617 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllFalse? Type617 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesCreateRequest? Type618 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestSelectedItemsAllTrue? Type618 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesCreateRequestType? Type619 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateRequestType? Type619 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesAzureCreateRequest? Type620 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesPartialUpdateRequest? Type620 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesAzureValidateCreateRequest? Type621 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesPartialUpdateRequestType? Type621 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesAzurePartialUpdateRequest? Type622 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesCreateRequest? Type622 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportAzureCreateRequest? Type623 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesCreateRequestType? Type623 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportAzureValidateCreateRequest? Type624 { get; set; }
+ public global::LabelStudio.ApiStoragesAzureCreateRequest? Type624 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportAzurePartialUpdateRequest? Type625 { get; set; }
+ public global::LabelStudio.ApiStoragesAzureValidateCreateRequest? Type625 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportGcsCreateRequest? Type626 { get; set; }
+ public global::LabelStudio.ApiStoragesAzurePartialUpdateRequest? Type626 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportGcsValidateCreateRequest? Type627 { get; set; }
+ public global::LabelStudio.ApiStoragesExportAzureCreateRequest? Type627 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportGcsPartialUpdateRequest? Type628 { get; set; }
+ public global::LabelStudio.ApiStoragesExportAzureValidateCreateRequest? Type628 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportLocalfilesCreateRequest? Type629 { get; set; }
+ public global::LabelStudio.ApiStoragesExportAzurePartialUpdateRequest? Type629 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportLocalfilesValidateCreateRequest? Type630 { get; set; }
+ public global::LabelStudio.ApiStoragesExportGcsCreateRequest? Type630 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportLocalfilesPartialUpdateRequest? Type631 { get; set; }
+ public global::LabelStudio.ApiStoragesExportGcsValidateCreateRequest? Type631 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportRedisCreateRequest? Type632 { get; set; }
+ public global::LabelStudio.ApiStoragesExportGcsPartialUpdateRequest? Type632 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportRedisValidateCreateRequest? Type633 { get; set; }
+ public global::LabelStudio.ApiStoragesExportLocalfilesCreateRequest? Type633 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportRedisPartialUpdateRequest? Type634 { get; set; }
+ public global::LabelStudio.ApiStoragesExportLocalfilesValidateCreateRequest? Type634 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportS3CreateRequest? Type635 { get; set; }
+ public global::LabelStudio.ApiStoragesExportLocalfilesPartialUpdateRequest? Type635 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportS3ValidateCreateRequest? Type636 { get; set; }
+ public global::LabelStudio.ApiStoragesExportRedisCreateRequest? Type636 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesExportS3PartialUpdateRequest? Type637 { get; set; }
+ public global::LabelStudio.ApiStoragesExportRedisValidateCreateRequest? Type637 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesGcsCreateRequest? Type638 { get; set; }
+ public global::LabelStudio.ApiStoragesExportRedisPartialUpdateRequest? Type638 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesGcsValidateCreateRequest? Type639 { get; set; }
+ public global::LabelStudio.ApiStoragesExportS3CreateRequest? Type639 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesGcsPartialUpdateRequest? Type640 { get; set; }
+ public global::LabelStudio.ApiStoragesExportS3ValidateCreateRequest? Type640 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesLocalfilesCreateRequest? Type641 { get; set; }
+ public global::LabelStudio.ApiStoragesExportS3PartialUpdateRequest? Type641 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesLocalfilesValidateCreateRequest? Type642 { get; set; }
+ public global::LabelStudio.ApiStoragesGcsCreateRequest? Type642 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesLocalfilesPartialUpdateRequest? Type643 { get; set; }
+ public global::LabelStudio.ApiStoragesGcsValidateCreateRequest? Type643 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesRedisCreateRequest? Type644 { get; set; }
+ public global::LabelStudio.ApiStoragesGcsPartialUpdateRequest? Type644 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesRedisValidateCreateRequest? Type645 { get; set; }
+ public global::LabelStudio.ApiStoragesLocalfilesCreateRequest? Type645 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesRedisPartialUpdateRequest? Type646 { get; set; }
+ public global::LabelStudio.ApiStoragesLocalfilesValidateCreateRequest? Type646 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesS3CreateRequest? Type647 { get; set; }
+ public global::LabelStudio.ApiStoragesLocalfilesPartialUpdateRequest? Type647 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesS3ValidateCreateRequest? Type648 { get; set; }
+ public global::LabelStudio.ApiStoragesRedisCreateRequest? Type648 { get; set; }
///
///
///
- public global::LabelStudio.ApiStoragesS3PartialUpdateRequest? Type649 { get; set; }
+ public global::LabelStudio.ApiStoragesRedisValidateCreateRequest? Type649 { get; set; }
///
///
///
- public global::LabelStudio.ApiTasksAnnotationsCreateRequest? Type650 { get; set; }
+ public global::LabelStudio.ApiStoragesRedisPartialUpdateRequest? Type650 { get; set; }
///
///
///
- public global::LabelStudio.ApiUsersCreateRequest? Type651 { get; set; }
+ public global::LabelStudio.ApiStoragesS3CreateRequest? Type651 { get; set; }
///
///
///
- public global::LabelStudio.ApiUsersPartialUpdateRequest? Type652 { get; set; }
+ public global::LabelStudio.ApiStoragesS3ValidateCreateRequest? Type652 { get; set; }
///
///
///
- public global::LabelStudio.ApiActivityLogsListMethod? Type653 { get; set; }
+ public global::LabelStudio.ApiStoragesS3PartialUpdateRequest? Type653 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsCreateId? Type654 { get; set; }
+ public global::LabelStudio.ApiTasksAnnotationsCreateRequest? Type654 { get; set; }
///
///
///
- public global::LabelStudio.ApiOrganizationsMembershipsListScope? Type655 { get; set; }
+ public global::LabelStudio.ApiUsersCreateRequest? Type655 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsAnalyticsDataQualityAgreementAnalysisConfusionMatrixRetrieveMode? Type656 { get; set; }
+ public global::LabelStudio.ApiUsersPartialUpdateRequest? Type656 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsStatsMemberPerformanceParticipantsListTable? Type657 { get; set; }
+ public global::LabelStudio.ApiActivityLogsListMethod? Type657 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsStatsMemberPerformanceRowsRetrieveTable? Type658 { get; set; }
+ public global::LabelStudio.ApiDmActionsCreateId? Type658 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsStatsMemberPerformanceSummaryRetrieveTable? Type659 { get; set; }
+ public global::LabelStudio.ApiOrganizationsMembershipsListScope? Type659 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsTasksAssigneesDestroyType? Type660 { get; set; }
+ public global::LabelStudio.ApiProjectsAnalyticsDataQualityAgreementAnalysisConfusionMatrixRetrieveMode? Type660 { get; set; }
///
///
///
- public global::LabelStudio.ApiProjectsSubsetTasksListAlignmentOutcome? Type661 { get; set; }
+ public global::LabelStudio.ApiProjectsStatsMemberPerformanceParticipantsListTable? Type661 { get; set; }
///
///
///
- public global::LabelStudio.ApiPromptsCompatibleProjectsListProjectType? Type662 { get; set; }
+ public global::LabelStudio.ApiProjectsStatsMemberPerformanceRowsRetrieveTable? Type662 { get; set; }
///
///
///
- public global::LabelStudio.ApiPromptsVersionsInferenceRunsListProjectSubset? Type663 { get; set; }
+ public global::LabelStudio.ApiProjectsStatsMemberPerformanceSummaryRetrieveTable? Type663 { get; set; }
///
///
///
- public global::LabelStudio.ApiTasksListFields? Type664 { get; set; }
+ public global::LabelStudio.ApiProjectsTasksAssigneesDestroyType? Type664 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type665 { get; set; }
+ public global::LabelStudio.ApiProjectsSubsetTasksListAlignmentOutcome? Type665 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type666 { get; set; }
+ public global::LabelStudio.ApiPromptsCompatibleProjectsListProjectType? Type666 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type667 { get; set; }
+ public global::LabelStudio.ApiPromptsVersionsInferenceRunsListProjectSubset? Type667 { get; set; }
///
///
///
- public global::LabelStudio.ApiAnnotationHistoryDestroyResponse? Type668 { get; set; }
+ public global::LabelStudio.ApiTasksListFields? Type668 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type669 { get; set; }
+ public global::System.Collections.Generic.IList? Type669 { get; set; }
///
///
///
- public global::LabelStudio.ApiAnnotationsBulkDeleteCreateResponse? Type670 { get; set; }
+ public global::System.Collections.Generic.IList? Type670 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type671 { get; set; }
+ public global::System.Collections.Generic.IList? Type671 { get; set; }
///
///
///
- public global::LabelStudio.ApiAnnotationsBulkCreateResponseItem? Type672 { get; set; }
+ public global::LabelStudio.ApiAnnotationHistoryDestroyResponse? Type672 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type673 { get; set; }
+ public global::System.Collections.Generic.IList? Type673 { get; set; }
///
///
///
- public global::LabelStudio.ApiCurrentUserResetTokenCreateResponse? Type674 { get; set; }
+ public global::LabelStudio.ApiAnnotationsBulkDeleteCreateResponse? Type674 { get; set; }
///
///
///
- public global::LabelStudio.ApiCurrentUserTokenRetrieveResponse? Type675 { get; set; }
+ public global::System.Collections.Generic.IList? Type675 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type676 { get; set; }
+ public global::LabelStudio.ApiAnnotationsBulkCreateResponseItem? Type676 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type677 { get; set; }
+ public global::System.Collections.Generic.IList? Type677 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type678 { get; set; }
+ public global::LabelStudio.ApiCurrentUserResetTokenCreateResponse? Type678 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type679 { get; set; }
+ public global::LabelStudio.ApiCurrentUserTokenRetrieveResponse? Type679 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type680 { get; set; }
+ public global::System.Collections.Generic.IList? Type680 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type681 { get; set; }
+ public global::System.Collections.Generic.IList? Type681 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type682 { get; set; }
+ public global::System.Collections.Generic.IList? Type682 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type683 { get; set; }
+ public global::System.Collections.Generic.IList? Type683 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type684 { get; set; }
+ public global::System.Collections.Generic.IList? Type684 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsRetrieveResponseItem? Type685 { get; set; }
+ public global::System.Collections.Generic.IList? Type685 { get; set; }
///
///
///
- public global::LabelStudio.ApiDmActionsRetrieveResponseItemDialog? Type686 { get; set; }
+ public global::System.Collections.Generic.IList? Type686 { get; set; }
///
///
///
- public global::LabelStudio.OneOf>? Type687 { get; set; }
+ public global::System.Collections.Generic.IList? Type687 { get; set; }
///
///
///
- public global::System.Collections.Generic.IList? Type688 { get; set; }
+ public global::System.Collections.Generic.IList? Type688 { get; set; }
///