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; } /// /// /// - public global::System.Collections.Generic.IList? Type689 { get; set; } + public global::LabelStudio.ApiDmActionsRetrieveResponseItem? Type689 { get; set; } /// /// /// - public global::LabelStudio.ApiInferenceRunsIndicatorsListResponseItem? Type690 { get; set; } + public global::LabelStudio.ApiDmActionsRetrieveResponseItemDialog? Type690 { get; set; } /// /// /// - public global::LabelStudio.ApiLearningResourcesUserProgressBulkResetCreateResponse? Type691 { get; set; } + public global::LabelStudio.OneOf>? Type691 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type692 { get; set; } + public global::System.Collections.Generic.IList? Type692 { get; set; } /// /// /// - public global::LabelStudio.ApiMlVersionsRetrieveResponse? Type693 { get; set; } + public global::System.Collections.Generic.IList? Type693 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type694 { get; set; } + public global::LabelStudio.ApiInferenceRunsIndicatorsListResponseItem? Type694 { get; set; } /// /// /// - public global::LabelStudio.ApiModelProviderConnectionsProviderChoicesRetrieveResponse? Type695 { get; set; } + public global::LabelStudio.ApiLearningResourcesUserProgressBulkResetCreateResponse? Type695 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type696 { get; set; } + public global::System.Collections.Generic.IList? Type696 { get; set; } /// /// /// - public global::LabelStudio.ApiOrganizationsMemberTagsAssignmentsCreateResponse? Type697 { get; set; } + public global::LabelStudio.ApiMlVersionsRetrieveResponse? Type697 { get; set; } /// /// /// - public global::LabelStudio.ApiOrganizationsMemberTagsBulkDestroyResponse? Type698 { get; set; } + public global::System.Collections.Generic.IList? Type698 { get; set; } /// /// /// - public global::LabelStudio.ApiOrganizationsMemberTagsBulkCreateResponse? Type699 { get; set; } + public global::LabelStudio.ApiModelProviderConnectionsProviderChoicesRetrieveResponse? Type699 { get; set; } /// /// /// - public global::LabelStudio.ApiOrganizationsMemberTagsImportsCreateResponse? Type700 { get; set; } + public global::System.Collections.Generic.IList? Type700 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type701 { get; set; } + public global::LabelStudio.ApiOrganizationsMemberTagsAssignmentsCreateResponse? Type701 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type702 { get; set; } + public global::LabelStudio.ApiOrganizationsMemberTagsBulkDestroyResponse? Type702 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type703 { get; set; } + public global::LabelStudio.ApiOrganizationsMemberTagsBulkCreateResponse? Type703 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type704 { get; set; } + public global::LabelStudio.ApiOrganizationsMemberTagsImportsCreateResponse? Type704 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type705 { get; set; } + public global::System.Collections.Generic.IList? Type705 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type706 { get; set; } + public global::System.Collections.Generic.IList? Type706 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsAwsCustomFunctionRetrieveResponse? Type707 { get; set; } + public global::System.Collections.Generic.IList? Type707 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsAwsCustomFunctionRetrieveResponseStatus? Type708 { get; set; } + public global::System.Collections.Generic.IList? Type708 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsCustomFunctionRetrieveResponse? Type709 { get; set; } + public global::System.Collections.Generic.IList? Type709 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsCustomFunctionRetrieveResponseStatus? Type710 { get; set; } + public global::System.Collections.Generic.IList? Type710 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsDashboardRetrieveResponse? Type711 { get; set; } + public global::LabelStudio.ApiProjectsAwsCustomFunctionRetrieveResponse? Type711 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsDuplicateCreateResponse? Type712 { get; set; } + public global::LabelStudio.ApiProjectsAwsCustomFunctionRetrieveResponseStatus? Type712 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type713 { get; set; } + public global::LabelStudio.ApiProjectsCustomFunctionRetrieveResponse? Type713 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsExportsConvertCreateResponse? Type714 { get; set; } + public global::LabelStudio.ApiProjectsCustomFunctionRetrieveResponseStatus? Type714 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type715 { get; set; } + public global::LabelStudio.ApiProjectsDashboardRetrieveResponse? Type715 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsGcpCustomFunctionRetrieveResponse? Type716 { get; set; } + public global::LabelStudio.ApiProjectsDuplicateCreateResponse? Type716 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsGcpCustomFunctionRetrieveResponseStatus? Type717 { get; set; } + public global::System.Collections.Generic.IList? Type717 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsImportCreateResponse? Type718 { get; set; } + public global::LabelStudio.ApiProjectsExportsConvertCreateResponse? Type718 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsImportPredictionsCreateResponse? Type719 { get; set; } + public global::System.Collections.Generic.IList? Type719 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsMembersBulkDestroyResponse? Type720 { get; set; } + public global::LabelStudio.ApiProjectsGcpCustomFunctionRetrieveResponse? Type720 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsMembersBulkCreateResponse? Type721 { get; set; } + public global::LabelStudio.ApiProjectsGcpCustomFunctionRetrieveResponseStatus? Type721 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsModelStatsAgreementRetrieveResponse? Type722 { get; set; } + public global::LabelStudio.ApiProjectsImportCreateResponse? Type722 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsModelStatsAgreementGroundtruthRetrieveResponse? Type723 { get; set; } + public global::LabelStudio.ApiProjectsImportPredictionsCreateResponse? Type723 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsModelStatsPredictionRetrieveResponse? Type724 { get; set; } + public global::LabelStudio.ApiProjectsMembersBulkDestroyResponse? Type724 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type725 { get; set; } + public global::LabelStudio.ApiProjectsModelStatsAgreementRetrieveResponse? Type725 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsIaaRetrieveResponse? Type726 { get; set; } + public global::LabelStudio.ApiProjectsModelStatsAgreementGroundtruthRetrieveResponse? Type726 { get; set; } /// /// /// - public global::LabelStudio.OneOf>, global::System.Collections.Generic.Dictionary>>>? Type727 { get; set; } + public global::LabelStudio.ApiProjectsModelStatsPredictionRetrieveResponse? Type727 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>>? Type728 { get; set; } + public global::System.Collections.Generic.IList? Type728 { get; set; } /// /// /// - public global::LabelStudio.OneOf>? Type729 { get; set; } + public global::LabelStudio.ApiProjectsStatsIaaRetrieveResponse? Type729 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsAgreementGroundtruthRetrieveResponse? Type730 { get; set; } + public global::LabelStudio.OneOf>, global::System.Collections.Generic.Dictionary>>>? Type730 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsAgreementAnnotatorRetrieveResponse? Type731 { get; set; } + public global::System.Collections.Generic.Dictionary>>? Type731 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsAgreementAnnotatorsRetrieveResponse? Type732 { get; set; } + public global::LabelStudio.OneOf>? Type732 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsDataFilterRetrieveResponse? Type733 { get; set; } + public global::LabelStudio.ApiProjectsStatsAgreementGroundtruthRetrieveResponse? Type733 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsDataFilterRetrieveResponseUserFilters? Type734 { get; set; } + public global::LabelStudio.ApiProjectsStatsAgreementAnnotatorRetrieveResponse? Type734 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type735 { get; set; } + public global::LabelStudio.ApiProjectsStatsAgreementAnnotatorsRetrieveResponse? Type735 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsDataFilterRetrieveResponseUserFiltersStat? Type736 { get; set; } + public global::LabelStudio.ApiProjectsStatsDataFilterRetrieveResponse? Type736 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsFinishedRetrieveResponse? Type737 { get; set; } + public global::LabelStudio.ApiProjectsStatsDataFilterRetrieveResponseUserFilters? Type737 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsLeadTimeRetrieveResponse? Type738 { get; set; } + public global::System.Collections.Generic.IList? Type738 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type739 { get; set; } + public global::LabelStudio.ApiProjectsStatsDataFilterRetrieveResponseUserFiltersStat? Type739 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsLeadTimeRetrieveResponseLeadTimeStat? Type740 { get; set; } + public global::LabelStudio.ApiProjectsStatsFinishedRetrieveResponse? Type740 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsMemberPerformanceRowsRetrieveResponse? Type741 { get; set; } + public global::LabelStudio.ApiProjectsStatsLeadTimeRetrieveResponse? Type741 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsMemberPerformanceSummaryRetrieveResponse? Type742 { get; set; } + public global::System.Collections.Generic.IList? Type742 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsTotalAgreementRetrieveResponseVariant1? Type743 { get; set; } + public global::LabelStudio.ApiProjectsStatsLeadTimeRetrieveResponseLeadTimeStat? Type743 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsStatsTotalAgreementRetrieveResponseVariant2? Type744 { get; set; } + public global::LabelStudio.ApiProjectsStatsMemberPerformanceRowsRetrieveResponse? Type744 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type745 { get; set; } + public global::LabelStudio.ApiProjectsStatsMemberPerformanceSummaryRetrieveResponse? Type745 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateResponse? Type746 { get; set; } + public global::LabelStudio.ApiProjectsStatsTotalAgreementRetrieveResponseVariant1? Type746 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type747 { get; set; } + public global::LabelStudio.ApiProjectsStatsTotalAgreementRetrieveResponseVariant2? Type747 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsUserStatsPredictionListResponse? Type748 { get; set; } + public global::System.Collections.Generic.IList? Type748 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsUserStatsReviewScoreListResponse? Type749 { get; set; } + public global::LabelStudio.ApiProjectsTasksAssigneesBulkCreateResponse? Type749 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsUserStatsPredictionRetrieveResponse? Type750 { get; set; } + public global::System.Collections.Generic.IList? Type750 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsUserStatsReviewScoreRetrieveResponse? Type751 { get; set; } + public global::LabelStudio.ApiProjectsUserStatsPredictionListResponse? Type751 { get; set; } /// /// /// - public global::LabelStudio.ApiProjectsUsersStatsAgreementGroundtruthRetrieveResponse? Type752 { get; set; } + public global::LabelStudio.ApiProjectsUserStatsReviewScoreListResponse? Type752 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type753 { get; set; } + public global::LabelStudio.ApiProjectsUserStatsPredictionRetrieveResponse? Type753 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type754 { get; set; } + public global::LabelStudio.ApiProjectsUserStatsReviewScoreRetrieveResponse? Type754 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type755 { get; set; } + public global::LabelStudio.ApiProjectsUsersStatsAgreementGroundtruthRetrieveResponse? Type755 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type756 { get; set; } + public global::System.Collections.Generic.IList? Type756 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type757 { get; set; } + public global::System.Collections.Generic.IList? Type757 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type758 { get; set; } + public global::System.Collections.Generic.IList? Type758 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type759 { get; set; } + public global::System.Collections.Generic.IList? Type759 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type760 { get; set; } + public global::System.Collections.Generic.IList? Type760 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type761 { get; set; } + public global::System.Collections.Generic.IList? Type761 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type762 { get; set; } + public global::System.Collections.Generic.IList? Type762 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type763 { get; set; } + public global::System.Collections.Generic.IList? Type763 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type764 { get; set; } + public global::System.Collections.Generic.IList? Type764 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type765 { get; set; } + public global::System.Collections.Generic.IList? Type765 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type766 { get; set; } + public global::System.Collections.Generic.IList? Type766 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type767 { get; set; } + public global::System.Collections.Generic.IList? Type767 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type768 { get; set; } + public global::System.Collections.Generic.IList? Type768 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type769 { get; set; } + public global::System.Collections.Generic.IList? Type769 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type770 { get; set; } + public global::System.Collections.Generic.IList? Type770 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type771 { get; set; } + public global::System.Collections.Generic.IList? Type771 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type772 { get; set; } + public global::System.Collections.Generic.IList? Type772 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type773 { get; set; } + public global::System.Collections.Generic.IList? Type773 { get; set; } /// /// /// - public global::LabelStudio.ApiStoragesExportTypesRetrieveResponseItem? Type774 { get; set; } + public global::System.Collections.Generic.IList? Type774 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type775 { get; set; } + public global::System.Collections.Generic.IList? Type775 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type776 { get; set; } + public global::System.Collections.Generic.IList? Type776 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type777 { get; set; } + public global::LabelStudio.ApiStoragesExportTypesRetrieveResponseItem? Type777 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type778 { get; set; } + public global::System.Collections.Generic.IList? Type778 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type779 { get; set; } + public global::System.Collections.Generic.IList? Type779 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type780 { get; set; } + public global::System.Collections.Generic.IList? Type780 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type781 { get; set; } + public global::System.Collections.Generic.IList? Type781 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type782 { get; set; } + public global::System.Collections.Generic.IList? Type782 { get; set; } /// /// /// - public global::LabelStudio.ApiStoragesTypesRetrieveResponseItem? Type783 { get; set; } + public global::System.Collections.Generic.IList? Type783 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type784 { get; set; } + public global::System.Collections.Generic.IList? Type784 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type785 { get; set; } + public global::System.Collections.Generic.IList? Type785 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type786 { get; set; } + public global::LabelStudio.ApiStoragesTypesRetrieveResponseItem? Type786 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponse? Type787 { get; set; } + public global::System.Collections.Generic.IList? Type787 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationsCreated? Type788 { get; set; } + public global::System.Collections.Generic.IList? Type788 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationsDeleted? Type789 { get; set; } + public global::System.Collections.Generic.IList? Type789 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationCreated? Type790 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponse? Type790 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationUpdated? Type791 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationsCreated? Type791 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseLabelLinkCreated? Type792 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationsDeleted? Type792 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseLabelLinkDeleted? Type793 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationCreated? Type793 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseLabelLinkUpdated? Type794 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseAnnotationUpdated? Type794 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseProjectCreated? Type795 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseLabelLinkCreated? Type795 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseProjectDeleted? Type796 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseLabelLinkDeleted? Type796 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseProjectUpdated? Type797 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseLabelLinkUpdated? Type797 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseReviewsDeleted? Type798 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseProjectCreated? Type798 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseReviewCreated? Type799 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseProjectDeleted? Type799 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseReviewUpdated? Type800 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseProjectUpdated? Type800 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseTasksCreated? Type801 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseReviewsDeleted? Type801 { get; set; } /// /// /// - public global::LabelStudio.ApiWebhooksInfoRetrieveResponseTasksDeleted? Type802 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseReviewCreated? Type802 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type803 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseReviewUpdated? Type803 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type804 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseTasksCreated? Type804 { get; set; } /// /// /// - public global::LabelStudio.ApiWorkspacesMembershipsBulkDestroyResponse? Type805 { get; set; } + public global::LabelStudio.ApiWebhooksInfoRetrieveResponseTasksDeleted? Type805 { get; set; } /// /// /// - public global::LabelStudio.ApiWorkspacesMembershipsBulkCreateResponse? Type806 { get; set; } + public global::System.Collections.Generic.IList? Type806 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type807 { get; set; } + public global::System.Collections.Generic.IList? Type807 { get; set; } + /// + /// + /// + public global::LabelStudio.ApiWorkspacesMembershipsBulkDestroyResponse? Type808 { get; set; } + /// + /// + /// + public global::LabelStudio.ApiWorkspacesMembershipsBulkCreateResponse? Type809 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.IList? Type810 { get; set; } /// /// @@ -3285,7 +3297,7 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType6 { get; set; } + public global::System.Collections.Generic.List? ListType6 { get; set; } /// /// /// @@ -3437,458 +3449,462 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::System.Collections.Generic.List? ListType44 { get; set; } + public global::System.Collections.Generic.List? ListType44 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.List? ListType45 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType45 { get; set; } + public global::System.Collections.Generic.List? ListType46 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType46 { get; set; } + public global::System.Collections.Generic.List? ListType47 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType47 { get; set; } + public global::System.Collections.Generic.List? ListType48 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType48 { get; set; } + public global::System.Collections.Generic.List? ListType49 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType49 { get; set; } + public global::System.Collections.Generic.List? ListType50 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType50 { get; set; } + public global::System.Collections.Generic.List? ListType51 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType51 { get; set; } + public global::System.Collections.Generic.List? ListType52 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType52 { get; set; } + public global::System.Collections.Generic.List? ListType53 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType53 { get; set; } + public global::System.Collections.Generic.List? ListType54 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType54 { get; set; } + public global::System.Collections.Generic.List? ListType55 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType55 { get; set; } + public global::System.Collections.Generic.List? ListType56 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType56 { get; set; } + public global::System.Collections.Generic.List? ListType57 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType57 { get; set; } + public global::System.Collections.Generic.List? ListType58 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType58 { get; set; } + public global::System.Collections.Generic.List? ListType59 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType59 { get; set; } + public global::System.Collections.Generic.List? ListType60 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType60 { get; set; } + public global::System.Collections.Generic.List? ListType61 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType61 { get; set; } + public global::System.Collections.Generic.List? ListType62 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType62 { get; set; } + public global::System.Collections.Generic.List>? ListType63 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType63 { get; set; } + public global::System.Collections.Generic.List? ListType64 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType64 { get; set; } + public global::System.Collections.Generic.List? ListType65 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType65 { get; set; } + public global::System.Collections.Generic.List? ListType66 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType66 { get; set; } + public global::System.Collections.Generic.List? ListType67 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType67 { get; set; } + public global::System.Collections.Generic.List? ListType68 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType68 { get; set; } + public global::System.Collections.Generic.List? ListType69 { get; set; } /// /// /// - public global::System.Collections.Generic.List>? ListType69 { get; set; } + public global::System.Collections.Generic.List>? ListType70 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType70 { get; set; } + public global::System.Collections.Generic.List? ListType71 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType71 { get; set; } + public global::System.Collections.Generic.List? ListType72 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType72 { get; set; } + public global::System.Collections.Generic.List? ListType73 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType73 { get; set; } + public global::System.Collections.Generic.List? ListType74 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType74 { get; set; } + public global::System.Collections.Generic.List? ListType75 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType75 { get; set; } + public global::System.Collections.Generic.List? ListType76 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType76 { get; set; } + public global::System.Collections.Generic.List? ListType77 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType77 { get; set; } + public global::System.Collections.Generic.List? ListType78 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType78 { get; set; } + public global::System.Collections.Generic.List? ListType79 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType79 { get; set; } + public global::System.Collections.Generic.List? ListType80 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType80 { get; set; } + public global::System.Collections.Generic.List? ListType81 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType81 { get; set; } + public global::System.Collections.Generic.List? ListType82 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType82 { get; set; } + public global::System.Collections.Generic.List? ListType83 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType83 { get; set; } + public global::System.Collections.Generic.List? ListType84 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType84 { get; set; } + public global::System.Collections.Generic.List? ListType85 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType85 { get; set; } + public global::System.Collections.Generic.List? ListType86 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType86 { get; set; } + public global::System.Collections.Generic.List? ListType87 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType87 { get; set; } + public global::System.Collections.Generic.List? ListType88 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType88 { get; set; } + public global::System.Collections.Generic.List? ListType89 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType89 { get; set; } + public global::System.Collections.Generic.List? ListType90 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType90 { get; set; } + public global::System.Collections.Generic.List? ListType91 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType91 { get; set; } + public global::System.Collections.Generic.List? ListType92 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType92 { get; set; } + public global::System.Collections.Generic.List? ListType93 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType93 { get; set; } + public global::System.Collections.Generic.List? ListType94 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType94 { get; set; } + public global::System.Collections.Generic.List? ListType95 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType95 { get; set; } + public global::System.Collections.Generic.List? ListType96 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType96 { get; set; } + public global::System.Collections.Generic.List? ListType97 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType97 { get; set; } + public global::System.Collections.Generic.List? ListType98 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType98 { get; set; } + public global::System.Collections.Generic.List? ListType99 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType99 { get; set; } + public global::System.Collections.Generic.List? ListType100 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType100 { get; set; } + public global::System.Collections.Generic.List? ListType101 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType101 { get; set; } + public global::System.Collections.Generic.List? ListType102 { get; set; } /// /// /// - public global::LabelStudio.OneOf>? ListType102 { get; set; } + public global::LabelStudio.OneOf>? ListType103 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType103 { get; set; } + public global::System.Collections.Generic.List? ListType104 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType104 { get; set; } + public global::System.Collections.Generic.List? ListType105 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType105 { get; set; } + public global::System.Collections.Generic.List? ListType106 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType106 { get; set; } + public global::System.Collections.Generic.List? ListType107 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType107 { get; set; } + public global::System.Collections.Generic.List? ListType108 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType108 { get; set; } + public global::System.Collections.Generic.List? ListType109 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType109 { get; set; } + public global::System.Collections.Generic.List? ListType110 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType110 { get; set; } + public global::System.Collections.Generic.List? ListType111 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType111 { get; set; } + public global::System.Collections.Generic.List? ListType112 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType112 { get; set; } + public global::System.Collections.Generic.List? ListType113 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType113 { get; set; } + public global::System.Collections.Generic.List? ListType114 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType114 { get; set; } + public global::System.Collections.Generic.List? ListType115 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType115 { get; set; } + public global::System.Collections.Generic.List? ListType116 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType116 { get; set; } + public global::System.Collections.Generic.List? ListType117 { get; set; } /// /// /// - public global::LabelStudio.OneOf>, global::System.Collections.Generic.Dictionary>>>? ListType117 { get; set; } + public global::LabelStudio.OneOf>, global::System.Collections.Generic.Dictionary>>>? ListType118 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary>>? ListType118 { get; set; } + public global::System.Collections.Generic.Dictionary>>? ListType119 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType119 { get; set; } + public global::System.Collections.Generic.List? ListType120 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType120 { get; set; } + public global::System.Collections.Generic.List? ListType121 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType121 { get; set; } + public global::System.Collections.Generic.List? ListType122 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType122 { get; set; } + public global::System.Collections.Generic.List? ListType123 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType123 { get; set; } + public global::System.Collections.Generic.List? ListType124 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType124 { get; set; } + public global::System.Collections.Generic.List? ListType125 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType125 { get; set; } + public global::System.Collections.Generic.List? ListType126 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType126 { get; set; } + public global::System.Collections.Generic.List? ListType127 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType127 { get; set; } + public global::System.Collections.Generic.List? ListType128 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType128 { get; set; } + public global::System.Collections.Generic.List? ListType129 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType129 { get; set; } + public global::System.Collections.Generic.List? ListType130 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType130 { get; set; } + public global::System.Collections.Generic.List? ListType131 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType131 { get; set; } + public global::System.Collections.Generic.List? ListType132 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType132 { get; set; } + public global::System.Collections.Generic.List? ListType133 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType133 { get; set; } + public global::System.Collections.Generic.List? ListType134 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType134 { get; set; } + public global::System.Collections.Generic.List? ListType135 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType135 { get; set; } + public global::System.Collections.Generic.List? ListType136 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType136 { get; set; } + public global::System.Collections.Generic.List? ListType137 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType137 { get; set; } + public global::System.Collections.Generic.List? ListType138 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType138 { get; set; } + public global::System.Collections.Generic.List? ListType139 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType139 { get; set; } + public global::System.Collections.Generic.List? ListType140 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType140 { get; set; } + public global::System.Collections.Generic.List? ListType141 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType141 { get; set; } + public global::System.Collections.Generic.List? ListType142 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType142 { get; set; } + public global::System.Collections.Generic.List? ListType143 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType143 { get; set; } + public global::System.Collections.Generic.List? ListType144 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType144 { get; set; } + public global::System.Collections.Generic.List? ListType145 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType145 { get; set; } + public global::System.Collections.Generic.List? ListType146 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType146 { get; set; } + public global::System.Collections.Generic.List? ListType147 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType147 { get; set; } + public global::System.Collections.Generic.List? ListType148 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType148 { get; set; } + public global::System.Collections.Generic.List? ListType149 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType149 { get; set; } + public global::System.Collections.Generic.List? ListType150 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType150 { get; set; } + public global::System.Collections.Generic.List? ListType151 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType151 { get; set; } + public global::System.Collections.Generic.List? ListType152 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType152 { get; set; } + public global::System.Collections.Generic.List? ListType153 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType153 { get; set; } + public global::System.Collections.Generic.List? ListType154 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType154 { get; set; } + public global::System.Collections.Generic.List? ListType155 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType155 { get; set; } + public global::System.Collections.Generic.List? ListType156 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType156 { get; set; } + public global::System.Collections.Generic.List? ListType157 { get; set; } /// /// /// - public global::System.Collections.Generic.List? ListType157 { get; set; } + public global::System.Collections.Generic.List? ListType158 { get; set; } } } \ No newline at end of file diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.AssignableOrganizationRoleEnum.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.AssignableOrganizationRoleEnum.g.cs new file mode 100644 index 00000000..2b1fbf47 --- /dev/null +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.AssignableOrganizationRoleEnum.g.cs @@ -0,0 +1,87 @@ + +#nullable enable + +namespace LabelStudio +{ + /// + /// * `OW` - Owner
+ /// * `AD` - Administrator
+ /// * `MA` - Manager
+ /// * `RE` - Reviewer
+ /// * `AN` - Annotator
+ /// * `DI` - Deactivated
+ /// * `NO` - Not Activated + ///
+ public enum AssignableOrganizationRoleEnum + { + /// + /// + /// + Ad, + /// + /// + /// + An, + /// + /// + /// + Di, + /// + /// + /// + Ma, + /// + /// + /// + No, + /// + /// + /// + Ow, + /// + /// + /// + Re, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class AssignableOrganizationRoleEnumExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this AssignableOrganizationRoleEnum value) + { + return value switch + { + AssignableOrganizationRoleEnum.Ad => "AD", + AssignableOrganizationRoleEnum.An => "AN", + AssignableOrganizationRoleEnum.Di => "DI", + AssignableOrganizationRoleEnum.Ma => "MA", + AssignableOrganizationRoleEnum.No => "NO", + AssignableOrganizationRoleEnum.Ow => "OW", + AssignableOrganizationRoleEnum.Re => "RE", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static AssignableOrganizationRoleEnum? ToEnum(string value) + { + return value switch + { + "AD" => AssignableOrganizationRoleEnum.Ad, + "AN" => AssignableOrganizationRoleEnum.An, + "DI" => AssignableOrganizationRoleEnum.Di, + "MA" => AssignableOrganizationRoleEnum.Ma, + "NO" => AssignableOrganizationRoleEnum.No, + "OW" => AssignableOrganizationRoleEnum.Ow, + "RE" => AssignableOrganizationRoleEnum.Re, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ConfigurablePermissionOption.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ConfigurablePermissionOption.g.cs index 232f6bcb..67dc66c0 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.ConfigurablePermissionOption.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ConfigurablePermissionOption.g.cs @@ -13,7 +13,7 @@ public sealed partial class ConfigurablePermissionOption ///
[global::System.Text.Json.Serialization.JsonPropertyName("default")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList Default { get; set; } + public required global::System.Collections.Generic.IList Default { get; set; } /// /// @@ -32,7 +32,7 @@ public sealed partial class ConfigurablePermissionOption /// [global::System.Text.Json.Serialization.JsonPropertyName("options")] [global::System.Text.Json.Serialization.JsonRequired] - public required global::System.Collections.Generic.IList Options { get; set; } + public required global::System.Collections.Generic.IList Options { get; set; } /// /// @@ -66,8 +66,8 @@ public sealed partial class ConfigurablePermissionOption [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ConfigurablePermissionOption( - global::System.Collections.Generic.IList @default, - global::System.Collections.Generic.IList options, + global::System.Collections.Generic.IList @default, + global::System.Collections.Generic.IList options, string permission, string? group, string? label, diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.DefaultRole.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.DefaultRole.g.cs index f37a08cd..e83e17ce 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.DefaultRole.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.DefaultRole.g.cs @@ -34,7 +34,8 @@ public sealed partial class DefaultRole /// * `RE` - Reviewer
/// * `AN` - Annotator
/// * `DI` - Deactivated
- /// * `NO` - Not Activated + /// * `NO` - Not Activated
+ /// * `VO` - View Only ///
[global::System.Text.Json.Serialization.JsonPropertyName("default_role")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] @@ -136,7 +137,8 @@ public sealed partial class DefaultRole /// * `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.Models.LseOrganization.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.LseOrganization.g.cs index ce1fd1ba..11213353 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.LseOrganization.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.LseOrganization.g.cs @@ -43,7 +43,8 @@ public sealed partial class LseOrganization /// * `RE` - Reviewer
/// * `AN` - Annotator
/// * `DI` - Deactivated
- /// * `NO` - Not Activated + /// * `NO` - Not Activated
+ /// * `VO` - View Only /// [global::System.Text.Json.Serialization.JsonPropertyName("default_role")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] @@ -150,7 +151,8 @@ public sealed partial class LseOrganization /// * `RE` - Reviewer
/// * `AN` - Annotator
/// * `DI` - Deactivated
- /// * `NO` - Not Activated + /// * `NO` - Not Activated
+ /// * `VO` - View Only /// /// /// List of objects: {"domain": "example.com"}. Used for CSP header on /embed routes. diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationPermissionRoleEnum.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationPermissionRoleEnum.g.cs index 42bc2c05..452e02a8 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationPermissionRoleEnum.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationPermissionRoleEnum.g.cs @@ -36,6 +36,10 @@ public enum OrganizationPermissionRoleEnum /// /// Re, + /// + /// + /// + Vo, } /// @@ -57,6 +61,7 @@ public static string ToValueString(this OrganizationPermissionRoleEnum value) OrganizationPermissionRoleEnum.No => "NO", OrganizationPermissionRoleEnum.Ow => "OW", OrganizationPermissionRoleEnum.Re => "RE", + OrganizationPermissionRoleEnum.Vo => "VO", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -74,6 +79,7 @@ public static string ToValueString(this OrganizationPermissionRoleEnum value) "NO" => OrganizationPermissionRoleEnum.No, "OW" => OrganizationPermissionRoleEnum.Ow, "RE" => OrganizationPermissionRoleEnum.Re, + "VO" => OrganizationPermissionRoleEnum.Vo, _ => null, }; } diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationRoleEnum.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationRoleEnum.g.cs index fde2a487..85dcc442 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationRoleEnum.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.OrganizationRoleEnum.g.cs @@ -10,7 +10,8 @@ namespace LabelStudio /// * `RE` - Reviewer
/// * `AN` - Annotator
/// * `DI` - Deactivated
- /// * `NO` - Not Activated + /// * `NO` - Not Activated
+ /// * `VO` - View Only ///
public enum OrganizationRoleEnum { @@ -42,6 +43,10 @@ public enum OrganizationRoleEnum /// /// Re, + /// + /// + /// + Vo, } /// @@ -63,6 +68,7 @@ public static string ToValueString(this OrganizationRoleEnum value) OrganizationRoleEnum.No => "NO", OrganizationRoleEnum.Ow => "OW", OrganizationRoleEnum.Re => "RE", + OrganizationRoleEnum.Vo => "VO", _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), }; } @@ -80,6 +86,7 @@ public static string ToValueString(this OrganizationRoleEnum value) "NO" => OrganizationRoleEnum.No, "OW" => OrganizationRoleEnum.Ow, "RE" => OrganizationRoleEnum.Re, + "VO" => OrganizationRoleEnum.Vo, _ => null, }; } diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.PatchedDefaultRoleRequest.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.PatchedDefaultRoleRequest.g.cs index 70e31a84..47482b3f 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.PatchedDefaultRoleRequest.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.PatchedDefaultRoleRequest.g.cs @@ -34,7 +34,8 @@ public sealed partial class PatchedDefaultRoleRequest /// * `RE` - Reviewer
/// * `AN` - Annotator
/// * `DI` - Deactivated
- /// * `NO` - Not Activated + /// * `NO` - Not Activated
+ /// * `VO` - View Only ///
[global::System.Text.Json.Serialization.JsonPropertyName("default_role")] [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] @@ -132,7 +133,8 @@ public sealed partial class PatchedDefaultRoleRequest /// * `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.Models.PatchedOrganizationMemberCreateUpdateRequest.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.PatchedOrganizationMemberCreateUpdateRequest.g.cs index 9176bd9a..b93e7c5f 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.PatchedOrganizationMemberCreateUpdateRequest.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.PatchedOrganizationMemberCreateUpdateRequest.g.cs @@ -19,8 +19,8 @@ public sealed partial class PatchedOrganizationMemberCreateUpdateRequest /// * `NO` - Not Activated /// [global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] - public global::LabelStudio.OrganizationRoleEnum? Role { get; set; } + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter))] + public global::LabelStudio.AssignableOrganizationRoleEnum? Role { get; set; } /// /// Member @@ -54,7 +54,7 @@ public sealed partial class PatchedOrganizationMemberCreateUpdateRequest [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public PatchedOrganizationMemberCreateUpdateRequest( - global::LabelStudio.OrganizationRoleEnum? role, + global::LabelStudio.AssignableOrganizationRoleEnum? role, int? userId) { this.Role = role; diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ApiProjectsMembersBulkCreateResponse.Json.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignResponse.Json.g.cs similarity index 85% rename from src/libs/LabelStudio/Generated/LabelStudio.Models.ApiProjectsMembersBulkCreateResponse.Json.g.cs rename to src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignResponse.Json.g.cs index 08133048..9c579bab 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.ApiProjectsMembersBulkCreateResponse.Json.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignResponse.Json.g.cs @@ -2,7 +2,7 @@ namespace LabelStudio { - public sealed partial class ApiProjectsMembersBulkCreateResponse + public sealed partial class ProjectMemberBulkAssignResponse { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -47,20 +47,20 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::LabelStudio.ApiProjectsMembersBulkCreateResponse? FromJson( + public static global::LabelStudio.ProjectMemberBulkAssignResponse? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::LabelStudio.ApiProjectsMembersBulkCreateResponse), - jsonSerializerContext) as global::LabelStudio.ApiProjectsMembersBulkCreateResponse; + typeof(global::LabelStudio.ProjectMemberBulkAssignResponse), + jsonSerializerContext) as global::LabelStudio.ProjectMemberBulkAssignResponse; } /// /// Deserializes a JSON string using the generated default JsonSerializerContext. /// - public static global::LabelStudio.ApiProjectsMembersBulkCreateResponse? FromJson( + public static global::LabelStudio.ProjectMemberBulkAssignResponse? FromJson( string json) { return FromJson( @@ -75,7 +75,7 @@ public string ToJson( [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] #endif - public static global::LabelStudio.ApiProjectsMembersBulkCreateResponse? FromJson( + public static global::LabelStudio.ProjectMemberBulkAssignResponse? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { @@ -86,7 +86,7 @@ public string ToJson( global::LabelStudio.SourceGenerationContext.Default); } - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -94,20 +94,20 @@ public string ToJson( /// /// Deserializes a JSON stream using the provided JsonSerializerContext. /// - public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( jsonStream, - typeof(global::LabelStudio.ApiProjectsMembersBulkCreateResponse), - jsonSerializerContext).ConfigureAwait(false)) as global::LabelStudio.ApiProjectsMembersBulkCreateResponse; + typeof(global::LabelStudio.ProjectMemberBulkAssignResponse), + jsonSerializerContext).ConfigureAwait(false)) as global::LabelStudio.ProjectMemberBulkAssignResponse; } /// /// Deserializes a JSON stream using the generated default JsonSerializerContext. /// - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream) { return FromJsonStreamAsync( @@ -122,7 +122,7 @@ public string ToJson( [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] #endif - public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( global::System.IO.Stream jsonStream, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { @@ -133,7 +133,7 @@ public string ToJson( global::LabelStudio.SourceGenerationContext.Default); } - return global::System.Text.Json.JsonSerializer.DeserializeAsync( + return global::System.Text.Json.JsonSerializer.DeserializeAsync( jsonStream, jsonSerializerOptions); } diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignResponse.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignResponse.g.cs new file mode 100644 index 00000000..aeccfd93 --- /dev/null +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignResponse.g.cs @@ -0,0 +1,55 @@ + +#nullable enable + +namespace LabelStudio +{ + /// + /// + /// + public sealed partial class ProjectMemberBulkAssignResponse + { + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("assignments")] + [global::System.Text.Json.Serialization.JsonRequired] + public required int Assignments { get; set; } + + /// + /// + /// + [global::System.Text.Json.Serialization.JsonPropertyName("skipped_user_ids")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Collections.Generic.IList SkippedUserIds { get; set; } + + /// + /// Additional properties that are not explicitly defined in the schema + /// + [global::System.Text.Json.Serialization.JsonExtensionData] + public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); + + /// + /// Initializes a new instance of the class. + /// + /// + /// +#if NET7_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] +#endif + public ProjectMemberBulkAssignResponse( + int assignments, + global::System.Collections.Generic.IList skippedUserIds) + { + this.Assignments = assignments; + this.SkippedUserIds = skippedUserIds ?? throw new global::System.ArgumentNullException(nameof(skippedUserIds)); + } + + /// + /// Initializes a new instance of the class. + /// + public ProjectMemberBulkAssignResponse() + { + } + + } +} \ No newline at end of file diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignRolesRequest.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignRolesRequest.g.cs index ad3726b6..bb3c5859 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignRolesRequest.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberBulkAssignRolesRequest.g.cs @@ -19,9 +19,9 @@ public sealed partial class ProjectMemberBulkAssignRolesRequest /// * `NO` - Not Activated /// [global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::LabelStudio.OrganizationRoleEnum Role { get; set; } + public required global::LabelStudio.AssignableOrganizationRoleEnum Role { get; set; } /// /// User ID @@ -56,7 +56,7 @@ public sealed partial class ProjectMemberBulkAssignRolesRequest [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif public ProjectMemberBulkAssignRolesRequest( - global::LabelStudio.OrganizationRoleEnum role, + global::LabelStudio.AssignableOrganizationRoleEnum role, int userId) { this.Role = role; diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberIdentityVerificationError.Json.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberIdentityVerificationError.Json.g.cs new file mode 100644 index 00000000..bd35b75d --- /dev/null +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberIdentityVerificationError.Json.g.cs @@ -0,0 +1,141 @@ +#nullable enable + +namespace LabelStudio +{ + public sealed partial class ProjectMemberIdentityVerificationError + { + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. + /// + public string ToJson( + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Serialize( + this, + this.GetType(), + jsonSerializerContext); + } + + /// + /// Serializes the current instance to a JSON string using the generated default JsonSerializerContext. + /// + public string ToJson() + { + return ToJson(global::LabelStudio.SourceGenerationContext.Default); + } + + /// + /// Serializes the current instance to a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public string ToJson( + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return ToJson(global::LabelStudio.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Serialize( + this, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerContext. + /// + public static global::LabelStudio.ProjectMemberIdentityVerificationError? FromJson( + string json, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + typeof(global::LabelStudio.ProjectMemberIdentityVerificationError), + jsonSerializerContext) as global::LabelStudio.ProjectMemberIdentityVerificationError; + } + + /// + /// Deserializes a JSON string using the generated default JsonSerializerContext. + /// + public static global::LabelStudio.ProjectMemberIdentityVerificationError? FromJson( + string json) + { + return FromJson( + json, + global::LabelStudio.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON string using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::LabelStudio.ProjectMemberIdentityVerificationError? FromJson( + string json, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJson( + json, + global::LabelStudio.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.Deserialize( + json, + jsonSerializerOptions); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerContext. + /// + public static async global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) + { + return (await global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + typeof(global::LabelStudio.ProjectMemberIdentityVerificationError), + jsonSerializerContext).ConfigureAwait(false)) as global::LabelStudio.ProjectMemberIdentityVerificationError; + } + + /// + /// Deserializes a JSON stream using the generated default JsonSerializerContext. + /// + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream) + { + return FromJsonStreamAsync( + jsonStream, + global::LabelStudio.SourceGenerationContext.Default); + } + + /// + /// Deserializes a JSON stream using the provided JsonSerializerOptions. + /// +#if NET8_0_OR_GREATER + [global::System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("JSON serialization and deserialization might require types that cannot be statically analyzed. Use the overload that takes a JsonTypeInfo or JsonSerializerContext, or make sure all of the required types are preserved.")] + [global::System.Diagnostics.CodeAnalysis.RequiresDynamicCode("JSON serialization and deserialization might require types that cannot be statically analyzed and might need runtime code generation. Use System.Text.Json source generation for native AOT applications.")] +#endif + public static global::System.Threading.Tasks.ValueTask FromJsonStreamAsync( + global::System.IO.Stream jsonStream, + global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) + { + if (jsonSerializerOptions is null) + { + return FromJsonStreamAsync( + jsonStream, + global::LabelStudio.SourceGenerationContext.Default); + } + + return global::System.Text.Json.JsonSerializer.DeserializeAsync( + jsonStream, + jsonSerializerOptions); + } + } +} diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ApiProjectsMembersBulkCreateResponse.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberIdentityVerificationError.g.cs similarity index 50% rename from src/libs/LabelStudio/Generated/LabelStudio.Models.ApiProjectsMembersBulkCreateResponse.g.cs rename to src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberIdentityVerificationError.g.cs index d465081e..5dd3bbfa 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.ApiProjectsMembersBulkCreateResponse.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectMemberIdentityVerificationError.g.cs @@ -6,13 +6,14 @@ namespace LabelStudio /// /// /// - public sealed partial class ApiProjectsMembersBulkCreateResponse + public sealed partial class ProjectMemberIdentityVerificationError { /// /// /// - [global::System.Text.Json.Serialization.JsonPropertyName("assignments")] - public int? Assignments { get; set; } + [global::System.Text.Json.Serialization.JsonPropertyName("skipped_user_ids")] + [global::System.Text.Json.Serialization.JsonRequired] + public required global::System.Collections.Generic.IList SkippedUserIds { get; set; } /// /// Additional properties that are not explicitly defined in the schema @@ -21,22 +22,22 @@ public sealed partial class ApiProjectsMembersBulkCreateResponse public global::System.Collections.Generic.IDictionary AdditionalProperties { get; set; } = new global::System.Collections.Generic.Dictionary(); /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - /// + /// #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif - public ApiProjectsMembersBulkCreateResponse( - int? assignments) + public ProjectMemberIdentityVerificationError( + global::System.Collections.Generic.IList skippedUserIds) { - this.Assignments = assignments; + this.SkippedUserIds = skippedUserIds ?? throw new global::System.ArgumentNullException(nameof(skippedUserIds)); } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public ApiProjectsMembersBulkCreateResponse() + public ProjectMemberIdentityVerificationError() { } diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRole.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRole.g.cs index 1283174e..81709011 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRole.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRole.g.cs @@ -32,9 +32,9 @@ public sealed partial class ProjectRole /// * `NO` - Not Activated /// [global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::LabelStudio.OrganizationRoleEnum Role { get; set; } + public required global::LabelStudio.AssignableOrganizationRoleEnum Role { get; set; } /// /// Included only in responses @@ -81,7 +81,7 @@ public sealed partial class ProjectRole #endif public ProjectRole( int project, - global::LabelStudio.OrganizationRoleEnum role, + global::LabelStudio.AssignableOrganizationRoleEnum role, int user, int id = default!, string roleSource = default!) diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRoleRequest.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRoleRequest.g.cs index cd55b837..152ed1ed 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRoleRequest.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.ProjectRoleRequest.g.cs @@ -25,9 +25,9 @@ public sealed partial class ProjectRoleRequest /// * `NO` - Not Activated /// [global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::LabelStudio.OrganizationRoleEnum Role { get; set; } + public required global::LabelStudio.AssignableOrganizationRoleEnum Role { get; set; } /// /// @@ -61,7 +61,7 @@ public sealed partial class ProjectRoleRequest #endif public ProjectRoleRequest( int project, - global::LabelStudio.OrganizationRoleEnum role, + global::LabelStudio.AssignableOrganizationRoleEnum role, int user) { this.Project = project; diff --git a/src/libs/LabelStudio/Generated/LabelStudio.Models.SendInviteRequest.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.Models.SendInviteRequest.g.cs index 6cea7f9c..35d95797 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.Models.SendInviteRequest.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.Models.SendInviteRequest.g.cs @@ -32,9 +32,9 @@ public sealed partial class SendInviteRequest /// * `NO` - Not Activated /// [global::System.Text.Json.Serialization.JsonPropertyName("role")] - [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.OrganizationRoleEnumJsonConverter))] + [global::System.Text.Json.Serialization.JsonConverter(typeof(global::LabelStudio.JsonConverters.AssignableOrganizationRoleEnumJsonConverter))] [global::System.Text.Json.Serialization.JsonRequired] - public required global::LabelStudio.OrganizationRoleEnum Role { get; set; } + public required global::LabelStudio.AssignableOrganizationRoleEnum Role { get; set; } /// /// Workspace IDs to grant access to @@ -75,7 +75,7 @@ public sealed partial class SendInviteRequest #endif public SendInviteRequest( global::System.Collections.Generic.IList emails, - global::LabelStudio.OrganizationRoleEnum role, + global::LabelStudio.AssignableOrganizationRoleEnum role, global::System.Collections.Generic.IList? projects, global::System.Collections.Generic.IList? workspaces) { diff --git a/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.SendEmail.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.SendEmail.g.cs index d5fa204f..8c0540e4 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.SendEmail.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.SendEmail.g.cs @@ -488,7 +488,7 @@ await SendEmailAsResponseAsync( /// public async 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.OrganizationsClient.Update3.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.Update3.g.cs index 3910536c..2a7dad7e 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.Update3.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.Update3.g.cs @@ -501,7 +501,7 @@ partial void ProcessUpdate3ResponseContent( /// public async 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.OrganizationsClient.UpdateDefaultRole.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.UpdateDefaultRole.g.cs index 3f87e8f7..4f248bb0 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.UpdateDefaultRole.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.OrganizationsClient.UpdateDefaultRole.g.cs @@ -482,7 +482,8 @@ partial void ProcessUpdateDefaultRoleResponseContent( /// * `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.ProjectRolesClient.Add.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.ProjectRolesClient.Add.g.cs index 3c810c25..e1b9afd4 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.ProjectRolesClient.Add.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.ProjectRolesClient.Add.g.cs @@ -474,7 +474,7 @@ partial void ProcessAddResponseContent( /// public async 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.ProjectsClient.Add.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.ProjectsClient.Add.g.cs index f637269c..c9c44e0f 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.ProjectsClient.Add.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.ProjectsClient.Add.g.cs @@ -358,6 +358,43 @@ partial void ProcessAddResponseContent( retryReason: global::System.String.Empty, cancellationToken: __effectiveCancellationToken)).ConfigureAwait(false); } + // + if ((int)__response.StatusCode == 400) + { + string? __content_400 = null; + global::System.Exception? __exception_400 = null; + global::LabelStudio.ProjectMemberIdentityVerificationError? __value_400 = null; + try + { + if (__effectiveReadResponseAsString) + { + __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false); + __value_400 = global::LabelStudio.ProjectMemberIdentityVerificationError.FromJson(__content_400, JsonSerializerContext); + } + else + { + __content_400 = await __response.Content.ReadAsStringAsync(__effectiveCancellationToken).ConfigureAwait(false); + + __value_400 = global::LabelStudio.ProjectMemberIdentityVerificationError.FromJson(__content_400, JsonSerializerContext); + } + } + catch (global::System.Exception __ex) + { + __exception_400 = __ex; + } + + + throw global::LabelStudio.ApiException.Create( + statusCode: __response.StatusCode, + message: __content_400 ?? __response.ReasonPhrase ?? string.Empty, + innerException: __exception_400, + responseBody: __content_400, + responseObject: __value_400, + responseHeaders: global::System.Linq.Enumerable.ToDictionary( + __response.Headers, + h => h.Key, + h => h.Value)); + } if (__effectiveReadResponseAsString) { diff --git a/src/libs/LabelStudio/Generated/LabelStudio.ProjectsClient.Post.g.cs b/src/libs/LabelStudio/Generated/LabelStudio.ProjectsClient.Post.g.cs index c6c367fe..34b02d68 100644 --- a/src/libs/LabelStudio/Generated/LabelStudio.ProjectsClient.Post.g.cs +++ b/src/libs/LabelStudio/Generated/LabelStudio.ProjectsClient.Post.g.cs @@ -76,7 +76,7 @@ partial void ProcessPostResponseContent( /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task PostAsync( + public async global::System.Threading.Tasks.Task PostAsync( int id, global::LabelStudio.ProjectMemberBulkAssignRequest request, @@ -126,7 +126,7 @@ partial void ProcessPostResponseContent( /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> PostAsResponseAsync( + public async global::System.Threading.Tasks.Task> PostAsResponseAsync( int id, global::LabelStudio.ProjectMemberBulkAssignRequest request, @@ -442,9 +442,9 @@ partial void ProcessPostResponseContent( { __response.EnsureSuccessStatusCode(); - var __value = global::LabelStudio.ApiProjectsMembersBulkCreateResponse.FromJson(__content, JsonSerializerContext) ?? + var __value = global::LabelStudio.ProjectMemberBulkAssignResponse.FromJson(__content, JsonSerializerContext) ?? throw new global::System.InvalidOperationException($"Response deserialization failed for \"{__content}\" "); - return new global::LabelStudio.AutoSDKHttpResponse( + return new global::LabelStudio.AutoSDKHttpResponse( statusCode: __response.StatusCode, headers: global::LabelStudio.AutoSDKHttpResponse.CreateHeaders(__response), requestUri: __response.RequestMessage?.RequestUri, @@ -474,9 +474,9 @@ partial void ProcessPostResponseContent( #endif ).ConfigureAwait(false); - var __value = await global::LabelStudio.ApiProjectsMembersBulkCreateResponse.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ?? + var __value = await global::LabelStudio.ProjectMemberBulkAssignResponse.FromJsonStreamAsync(__content, JsonSerializerContext).ConfigureAwait(false) ?? throw new global::System.InvalidOperationException("Response deserialization failed."); - return new global::LabelStudio.AutoSDKHttpResponse( + return new global::LabelStudio.AutoSDKHttpResponse( statusCode: __response.StatusCode, headers: global::LabelStudio.AutoSDKHttpResponse.CreateHeaders(__response), requestUri: __response.RequestMessage?.RequestUri, @@ -548,7 +548,7 @@ partial void ProcessPostResponseContent( /// Per-request overrides such as headers, query parameters, timeout, retries, and response buffering. /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task PostAsync( + public async global::System.Threading.Tasks.Task PostAsync( int id, bool all, string? lastActivityGte = default, diff --git a/src/libs/LabelStudio/openapi.yaml b/src/libs/LabelStudio/openapi.yaml index 0d2dcfca..d93aa785 100644 --- a/src/libs/LabelStudio/openapi.yaml +++ b/src/libs/LabelStudio/openapi.yaml @@ -12303,6 +12303,12 @@ paths: schema: $ref: '#/components/schemas/ProjectMember' description: '' + '400': + content: + application/json: + schema: + $ref: '#/components/schemas/ProjectMemberIdentityVerificationError' + description: '' security: - Token: [] summary: ✨ Add project member @@ -12477,10 +12483,7 @@ paths: content: application/json: schema: - properties: - assignments: - type: integer - type: object + $ref: '#/components/schemas/ProjectMemberBulkAssignResponse' description: '' security: - Token: [] @@ -26571,6 +26574,24 @@ components: required: - annotation type: object + AssignableOrganizationRoleEnum: + description: |- + * `OW` - Owner + * `AD` - Administrator + * `MA` - Manager + * `RE` - Reviewer + * `AN` - Annotator + * `DI` - Deactivated + * `NO` - Not Activated + enum: + - OW + - AD + - MA + - RE + - AN + - DI + - 'NO' + type: string AssignmentSettings: properties: id: @@ -28153,7 +28174,7 @@ components: properties: default: items: - $ref: '#/components/schemas/OrganizationRoleEnum' + $ref: '#/components/schemas/AssignableOrganizationRoleEnum' type: array group: type: string @@ -28161,7 +28182,7 @@ components: type: string options: items: - $ref: '#/components/schemas/OrganizationRoleEnum' + $ref: '#/components/schemas/AssignableOrganizationRoleEnum' type: array permission: type: string @@ -29296,6 +29317,7 @@ components: * `AN` - Annotator * `DI` - Deactivated * `NO` - Not Activated + * `VO` - View Only email_notification_settings: description: 'Email notification settings for this organization. Controls which email notifications users can receive. Structure: {"notifications_allowed": {"notification_type": bool}}' nullable: true @@ -33107,6 +33129,7 @@ components: * `AN` - Annotator * `DI` - Deactivated * `NO` - Not Activated + * `VO` - View Only email_notification_settings: additionalProperties: {} description: |- @@ -37079,6 +37102,7 @@ components: - AN - DI - 'NO' + - VO type: string OrganizationRoleEnum: description: |- @@ -37089,6 +37113,7 @@ components: * `AN` - Annotator * `DI` - Deactivated * `NO` - Not Activated + * `VO` - View Only enum: - OW - AD @@ -37097,6 +37122,7 @@ components: - AN - DI - 'NO' + - VO type: string PaginatedAllRolesProjectListList: properties: @@ -38333,6 +38359,7 @@ components: * `AN` - Annotator * `DI` - Deactivated * `NO` - Not Activated + * `VO` - View Only email_notification_settings: description: 'Email notification settings for this organization. Controls which email notifications users can receive. Structure: {"notifications_allowed": {"notification_type": bool}}' nullable: true @@ -39750,7 +39777,7 @@ components: properties: role: allOf: - - $ref: '#/components/schemas/OrganizationRoleEnum' + - $ref: '#/components/schemas/AssignableOrganizationRoleEnum' description: |- Organization role @@ -40863,11 +40890,23 @@ components: required: - all type: object + ProjectMemberBulkAssignResponse: + properties: + assignments: + type: integer + skipped_user_ids: + items: + type: integer + type: array + required: + - assignments + - skipped_user_ids + type: object ProjectMemberBulkAssignRolesRequest: properties: role: allOf: - - $ref: '#/components/schemas/OrganizationRoleEnum' + - $ref: '#/components/schemas/AssignableOrganizationRoleEnum' description: |- Role @@ -40886,6 +40925,15 @@ components: - role - user_id type: object + ProjectMemberIdentityVerificationError: + properties: + skipped_user_ids: + items: + type: integer + type: array + required: + - skipped_user_ids + type: object ProjectMemberRequest: properties: user: @@ -40938,7 +40986,7 @@ components: project: type: integer role: - $ref: '#/components/schemas/OrganizationRoleEnum' + $ref: '#/components/schemas/AssignableOrganizationRoleEnum' role_source: readOnly: true type: string @@ -40956,7 +41004,7 @@ components: project: type: integer role: - $ref: '#/components/schemas/OrganizationRoleEnum' + $ref: '#/components/schemas/AssignableOrganizationRoleEnum' user: type: integer required: @@ -42645,7 +42693,7 @@ components: type: array role: allOf: - - $ref: '#/components/schemas/OrganizationRoleEnum' + - $ref: '#/components/schemas/AssignableOrganizationRoleEnum' description: |- Organization role