diff --git a/src/libs/GitHub/Generated/GitHub..JsonSerializerContext.g.cs b/src/libs/GitHub/Generated/GitHub..JsonSerializerContext.g.cs index fccf4a1a1..76fa8a5ca 100644 --- a/src/libs/GitHub/Generated/GitHub..JsonSerializerContext.g.cs +++ b/src/libs/GitHub/Generated/GitHub..JsonSerializerContext.g.cs @@ -5751,6 +5751,8 @@ namespace GitHub typeof(global::GitHub.JsonConverters.SearchIssuesAndPullRequestsSortNullableJsonConverter), typeof(global::GitHub.JsonConverters.SearchIssuesAndPullRequestsOrderJsonConverter), typeof(global::GitHub.JsonConverters.SearchIssuesAndPullRequestsOrderNullableJsonConverter), + typeof(global::GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchTypeJsonConverter), + typeof(global::GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchTypeNullableJsonConverter), typeof(global::GitHub.JsonConverters.SearchLabelsSortJsonConverter), typeof(global::GitHub.JsonConverters.SearchLabelsSortNullableJsonConverter), typeof(global::GitHub.JsonConverters.SearchLabelsOrderJsonConverter), diff --git a/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCreateOrUpdateCustomPropertiesValuesForRepos.g.cs b/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValues.g.cs similarity index 90% rename from src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCreateOrUpdateCustomPropertiesValuesForRepos.g.cs rename to src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValues.g.cs index e56ce8124..1b0829002 100644 --- a/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCreateOrUpdateCustomPropertiesValuesForRepos.g.cs +++ b/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValues.g.cs @@ -18,9 +18,9 @@ public partial interface IOrgsClient /// /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task OrgsCreateOrUpdateCustomPropertiesValuesForReposAsync( + global::System.Threading.Tasks.Task OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesAsync( string org, - global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest request, + global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest request, global::System.Threading.CancellationToken cancellationToken = default); /// @@ -42,7 +42,7 @@ public partial interface IOrgsClient /// /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task OrgsCreateOrUpdateCustomPropertiesValuesForReposAsync( + global::System.Threading.Tasks.Task OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesAsync( string org, global::System.Collections.Generic.IList repositoryNames, global::System.Collections.Generic.IList properties, diff --git a/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsListCustomPropertiesValuesForRepos.g.cs b/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCustomPropertiesForReposGetOrganizationValues.g.cs similarity index 95% rename from src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsListCustomPropertiesValuesForRepos.g.cs rename to src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCustomPropertiesForReposGetOrganizationValues.g.cs index 45496f4b2..d28ad5274 100644 --- a/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsListCustomPropertiesValuesForRepos.g.cs +++ b/src/libs/GitHub/Generated/GitHub.IOrgsClient.OrgsCustomPropertiesForReposGetOrganizationValues.g.cs @@ -19,7 +19,7 @@ public partial interface IOrgsClient /// /// The token to cancel the operation with /// - global::System.Threading.Tasks.Task> OrgsListCustomPropertiesValuesForReposAsync( + global::System.Threading.Tasks.Task> OrgsCustomPropertiesForReposGetOrganizationValuesAsync( string org, int? perPage = default, int? page = default, diff --git a/src/libs/GitHub/Generated/GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchType.g.cs b/src/libs/GitHub/Generated/GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchType.g.cs new file mode 100644 index 000000000..505d8c6cf --- /dev/null +++ b/src/libs/GitHub/Generated/GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchType.g.cs @@ -0,0 +1,53 @@ +#nullable enable + +namespace GitHub.JsonConverters +{ + /// + public sealed class SearchIssuesAndPullRequestsSearchTypeJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::GitHub.SearchIssuesAndPullRequestsSearchType 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::GitHub.SearchIssuesAndPullRequestsSearchTypeExtensions.ToEnum(stringValue) ?? default; + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::GitHub.SearchIssuesAndPullRequestsSearchType)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::GitHub.SearchIssuesAndPullRequestsSearchType); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::GitHub.SearchIssuesAndPullRequestsSearchType value, + global::System.Text.Json.JsonSerializerOptions options) + { + writer = writer ?? throw new global::System.ArgumentNullException(nameof(writer)); + + writer.WriteStringValue(global::GitHub.SearchIssuesAndPullRequestsSearchTypeExtensions.ToValueString(value)); + } + } +} diff --git a/src/libs/GitHub/Generated/GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchTypeNullable.g.cs b/src/libs/GitHub/Generated/GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchTypeNullable.g.cs new file mode 100644 index 000000000..09185ace2 --- /dev/null +++ b/src/libs/GitHub/Generated/GitHub.JsonConverters.SearchIssuesAndPullRequestsSearchTypeNullable.g.cs @@ -0,0 +1,60 @@ +#nullable enable + +namespace GitHub.JsonConverters +{ + /// + public sealed class SearchIssuesAndPullRequestsSearchTypeNullableJsonConverter : global::System.Text.Json.Serialization.JsonConverter + { + /// + public override global::GitHub.SearchIssuesAndPullRequestsSearchType? 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::GitHub.SearchIssuesAndPullRequestsSearchTypeExtensions.ToEnum(stringValue); + } + + break; + } + case global::System.Text.Json.JsonTokenType.Number: + { + var numValue = reader.GetInt32(); + return (global::GitHub.SearchIssuesAndPullRequestsSearchType)numValue; + } + case global::System.Text.Json.JsonTokenType.Null: + { + return default(global::GitHub.SearchIssuesAndPullRequestsSearchType?); + } + default: + throw new global::System.ArgumentOutOfRangeException(nameof(reader)); + } + + return default; + } + + /// + public override void Write( + global::System.Text.Json.Utf8JsonWriter writer, + global::GitHub.SearchIssuesAndPullRequestsSearchType? 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::GitHub.SearchIssuesAndPullRequestsSearchTypeExtensions.ToValueString(value.Value)); + } + } + } +} diff --git a/src/libs/GitHub/Generated/GitHub.JsonSerializerContextTypes.g.cs b/src/libs/GitHub/Generated/GitHub.JsonSerializerContextTypes.g.cs index f1d76dd0c..748094055 100644 --- a/src/libs/GitHub/Generated/GitHub.JsonSerializerContextTypes.g.cs +++ b/src/libs/GitHub/Generated/GitHub.JsonSerializerContextTypes.g.cs @@ -23938,7 +23938,7 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest? Type5978 { get; set; } + public global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest? Type5978 { get; set; } /// /// /// @@ -26090,1674 +26090,1678 @@ public sealed partial class JsonSerializerContextTypes /// /// /// - public global::GitHub.SearchLabelsSort? Type6516 { get; set; } + public global::GitHub.SearchIssuesAndPullRequestsSearchType? Type6516 { get; set; } /// /// /// - public global::GitHub.SearchLabelsOrder? Type6517 { get; set; } + public global::GitHub.SearchLabelsSort? Type6517 { get; set; } /// /// /// - public global::GitHub.SearchReposSort? Type6518 { get; set; } + public global::GitHub.SearchLabelsOrder? Type6518 { get; set; } /// /// /// - public global::GitHub.SearchReposOrder? Type6519 { get; set; } + public global::GitHub.SearchReposSort? Type6519 { get; set; } /// /// /// - public global::GitHub.SearchUsersSort? Type6520 { get; set; } + public global::GitHub.SearchReposOrder? Type6520 { get; set; } /// /// /// - public global::GitHub.SearchUsersOrder? Type6521 { get; set; } + public global::GitHub.SearchUsersSort? Type6521 { get; set; } /// /// /// - public global::GitHub.TeamsListDiscussionsLegacyDirection? Type6522 { get; set; } + public global::GitHub.SearchUsersOrder? Type6522 { get; set; } /// /// /// - public global::GitHub.TeamsListDiscussionCommentsLegacyDirection? Type6523 { get; set; } + public global::GitHub.TeamsListDiscussionsLegacyDirection? Type6523 { get; set; } /// /// /// - public global::GitHub.ReactionsListForTeamDiscussionCommentLegacyContent? Type6524 { get; set; } + public global::GitHub.TeamsListDiscussionCommentsLegacyDirection? Type6524 { get; set; } /// /// /// - public global::GitHub.ReactionsListForTeamDiscussionLegacyContent? Type6525 { get; set; } + public global::GitHub.ReactionsListForTeamDiscussionCommentLegacyContent? Type6525 { get; set; } /// /// /// - public global::GitHub.TeamsListMembersLegacyRole? Type6526 { get; set; } + public global::GitHub.ReactionsListForTeamDiscussionLegacyContent? Type6526 { get; set; } /// /// /// - public global::GitHub.IssuesListForAuthenticatedUserFilter? Type6527 { get; set; } + public global::GitHub.TeamsListMembersLegacyRole? Type6527 { get; set; } /// /// /// - public global::GitHub.IssuesListForAuthenticatedUserState? Type6528 { get; set; } + public global::GitHub.IssuesListForAuthenticatedUserFilter? Type6528 { get; set; } /// /// /// - public global::GitHub.IssuesListForAuthenticatedUserSort? Type6529 { get; set; } + public global::GitHub.IssuesListForAuthenticatedUserState? Type6529 { get; set; } /// /// /// - public global::GitHub.IssuesListForAuthenticatedUserDirection? Type6530 { get; set; } + public global::GitHub.IssuesListForAuthenticatedUserSort? Type6530 { get; set; } /// /// /// - public global::GitHub.OrgsListMembershipsForAuthenticatedUserState? Type6531 { get; set; } + public global::GitHub.IssuesListForAuthenticatedUserDirection? Type6531 { get; set; } /// /// /// - public global::GitHub.PackagesListPackagesForAuthenticatedUserPackageType? Type6532 { get; set; } + public global::GitHub.OrgsListMembershipsForAuthenticatedUserState? Type6532 { get; set; } /// /// /// - public global::GitHub.PackagesListPackagesForAuthenticatedUserVisibility? Type6533 { get; set; } + public global::GitHub.PackagesListPackagesForAuthenticatedUserPackageType? Type6533 { get; set; } /// /// /// - public global::GitHub.PackagesGetPackageForAuthenticatedUserPackageType? Type6534 { get; set; } + public global::GitHub.PackagesListPackagesForAuthenticatedUserVisibility? Type6534 { get; set; } /// /// /// - public global::GitHub.PackagesDeletePackageForAuthenticatedUserPackageType? Type6535 { get; set; } + public global::GitHub.PackagesGetPackageForAuthenticatedUserPackageType? Type6535 { get; set; } /// /// /// - public global::GitHub.PackagesRestorePackageForAuthenticatedUserPackageType? Type6536 { get; set; } + public global::GitHub.PackagesDeletePackageForAuthenticatedUserPackageType? Type6536 { get; set; } /// /// /// - public global::GitHub.PackagesGetAllPackageVersionsForPackageOwnedByAuthenticatedUserPackageType? Type6537 { get; set; } + public global::GitHub.PackagesRestorePackageForAuthenticatedUserPackageType? Type6537 { get; set; } /// /// /// - public global::GitHub.PackagesGetAllPackageVersionsForPackageOwnedByAuthenticatedUserState? Type6538 { get; set; } + public global::GitHub.PackagesGetAllPackageVersionsForPackageOwnedByAuthenticatedUserPackageType? Type6538 { get; set; } /// /// /// - public global::GitHub.PackagesGetPackageVersionForAuthenticatedUserPackageType? Type6539 { get; set; } + public global::GitHub.PackagesGetAllPackageVersionsForPackageOwnedByAuthenticatedUserState? Type6539 { get; set; } /// /// /// - public global::GitHub.PackagesDeletePackageVersionForAuthenticatedUserPackageType? Type6540 { get; set; } + public global::GitHub.PackagesGetPackageVersionForAuthenticatedUserPackageType? Type6540 { get; set; } /// /// /// - public global::GitHub.PackagesRestorePackageVersionForAuthenticatedUserPackageType? Type6541 { get; set; } + public global::GitHub.PackagesDeletePackageVersionForAuthenticatedUserPackageType? Type6541 { get; set; } /// /// /// - public global::GitHub.ReposListForAuthenticatedUserVisibility? Type6542 { get; set; } + public global::GitHub.PackagesRestorePackageVersionForAuthenticatedUserPackageType? Type6542 { get; set; } /// /// /// - public global::GitHub.ReposListForAuthenticatedUserType? Type6543 { get; set; } + public global::GitHub.ReposListForAuthenticatedUserVisibility? Type6543 { get; set; } /// /// /// - public global::GitHub.ReposListForAuthenticatedUserSort? Type6544 { get; set; } + public global::GitHub.ReposListForAuthenticatedUserType? Type6544 { get; set; } /// /// /// - public global::GitHub.ReposListForAuthenticatedUserDirection? Type6545 { get; set; } + public global::GitHub.ReposListForAuthenticatedUserSort? Type6545 { get; set; } /// /// /// - public global::GitHub.ActivityListReposStarredByAuthenticatedUserSort? Type6546 { get; set; } + public global::GitHub.ReposListForAuthenticatedUserDirection? Type6546 { get; set; } /// /// /// - public global::GitHub.ActivityListReposStarredByAuthenticatedUserDirection? Type6547 { get; set; } + public global::GitHub.ActivityListReposStarredByAuthenticatedUserSort? Type6547 { get; set; } /// /// /// - public global::GitHub.UsersGetContextForUserSubjectType? Type6548 { get; set; } + public global::GitHub.ActivityListReposStarredByAuthenticatedUserDirection? Type6548 { get; set; } /// /// /// - public global::GitHub.PackagesListPackagesForUserPackageType? Type6549 { get; set; } + public global::GitHub.UsersGetContextForUserSubjectType? Type6549 { get; set; } /// /// /// - public global::GitHub.PackagesListPackagesForUserVisibility? Type6550 { get; set; } + public global::GitHub.PackagesListPackagesForUserPackageType? Type6550 { get; set; } /// /// /// - public global::GitHub.PackagesGetPackageForUserPackageType? Type6551 { get; set; } + public global::GitHub.PackagesListPackagesForUserVisibility? Type6551 { get; set; } /// /// /// - public global::GitHub.PackagesDeletePackageForUserPackageType? Type6552 { get; set; } + public global::GitHub.PackagesGetPackageForUserPackageType? Type6552 { get; set; } /// /// /// - public global::GitHub.PackagesRestorePackageForUserPackageType? Type6553 { get; set; } + public global::GitHub.PackagesDeletePackageForUserPackageType? Type6553 { get; set; } /// /// /// - public global::GitHub.PackagesGetAllPackageVersionsForPackageOwnedByUserPackageType? Type6554 { get; set; } + public global::GitHub.PackagesRestorePackageForUserPackageType? Type6554 { get; set; } /// /// /// - public global::GitHub.PackagesGetPackageVersionForUserPackageType? Type6555 { get; set; } + public global::GitHub.PackagesGetAllPackageVersionsForPackageOwnedByUserPackageType? Type6555 { get; set; } /// /// /// - public global::GitHub.PackagesDeletePackageVersionForUserPackageType? Type6556 { get; set; } + public global::GitHub.PackagesGetPackageVersionForUserPackageType? Type6556 { get; set; } /// /// /// - public global::GitHub.PackagesRestorePackageVersionForUserPackageType? Type6557 { get; set; } + public global::GitHub.PackagesDeletePackageVersionForUserPackageType? Type6557 { get; set; } /// /// /// - public global::GitHub.ProjectsClassicListForUserState? Type6558 { get; set; } + public global::GitHub.PackagesRestorePackageVersionForUserPackageType? Type6558 { get; set; } /// /// /// - public global::GitHub.ReposListForUserType? Type6559 { get; set; } + public global::GitHub.ProjectsClassicListForUserState? Type6559 { get; set; } /// /// /// - public global::GitHub.ReposListForUserSort? Type6560 { get; set; } + public global::GitHub.ReposListForUserType? Type6560 { get; set; } /// /// /// - public global::GitHub.ReposListForUserDirection? Type6561 { get; set; } + public global::GitHub.ReposListForUserSort? Type6561 { get; set; } /// /// /// - public global::GitHub.ActivityListReposStarredByUserSort? Type6562 { get; set; } + public global::GitHub.ReposListForUserDirection? Type6562 { get; set; } /// /// /// - public global::GitHub.ActivityListReposStarredByUserDirection? Type6563 { get; set; } + public global::GitHub.ActivityListReposStarredByUserSort? Type6563 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6564 { get; set; } + public global::GitHub.ActivityListReposStarredByUserDirection? Type6564 { get; set; } /// /// /// - public global::GitHub.AllOf? Type6565 { get; set; } + public global::System.Collections.Generic.IList? Type6565 { get; set; } /// /// /// - public global::GitHub.AppsCreateFromManifestResponse2? Type6566 { get; set; } + public global::GitHub.AllOf? Type6566 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6567 { get; set; } + public global::GitHub.AppsCreateFromManifestResponse2? Type6567 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6568 { get; set; } + public global::System.Collections.Generic.IList? Type6568 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6569 { get; set; } + public global::System.Collections.Generic.IList? Type6569 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6570 { get; set; } + public global::System.Collections.Generic.IList? Type6570 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6571 { get; set; } + public global::System.Collections.Generic.IList? Type6571 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6572 { get; set; } + public global::System.Collections.Generic.IList? Type6572 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6573 { get; set; } + public global::System.Collections.Generic.IList? Type6573 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6574 { get; set; } + public global::System.Collections.Generic.IList? Type6574 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6575 { get; set; } + public global::System.Collections.Generic.IList? Type6575 { get; set; } /// /// /// - public global::GitHub.CodeSecuritySetConfigurationAsDefaultForEnterpriseResponse? Type6576 { get; set; } + public global::System.Collections.Generic.IList? Type6576 { get; set; } /// /// /// - public global::GitHub.CodeSecuritySetConfigurationAsDefaultForEnterpriseResponseDefaultForNewRepos? Type6577 { get; set; } + public global::GitHub.CodeSecuritySetConfigurationAsDefaultForEnterpriseResponse? Type6577 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6578 { get; set; } + public global::GitHub.CodeSecuritySetConfigurationAsDefaultForEnterpriseResponseDefaultForNewRepos? Type6578 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6579 { get; set; } + public global::System.Collections.Generic.IList? Type6579 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6580 { get; set; } + public global::System.Collections.Generic.IList? Type6580 { get; set; } /// /// /// - public global::GitHub.SecretScanningListAlertsForEnterpriseResponse? Type6581 { get; set; } + public global::System.Collections.Generic.IList? Type6581 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6582 { get; set; } + public global::GitHub.SecretScanningListAlertsForEnterpriseResponse? Type6582 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6583 { get; set; } + public global::System.Collections.Generic.IList? Type6583 { get; set; } /// /// /// - public global::GitHub.ActivityListPublicEventsResponse? Type6584 { get; set; } + public global::System.Collections.Generic.IList? Type6584 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6585 { get; set; } + public global::GitHub.ActivityListPublicEventsResponse? Type6585 { get; set; } /// /// /// - public global::GitHub.GistsGetResponse? Type6586 { get; set; } + public global::System.Collections.Generic.IList? Type6586 { get; set; } /// /// /// - public global::GitHub.GistsGetResponseBlock? Type6587 { get; set; } + public global::GitHub.GistsGetResponse? Type6587 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6588 { get; set; } + public global::GitHub.GistsGetResponseBlock? Type6588 { get; set; } /// /// /// - public global::GitHub.GistsGetCommentResponse? Type6589 { get; set; } + public global::System.Collections.Generic.IList? Type6589 { get; set; } /// /// /// - public global::GitHub.GistsGetCommentResponseBlock? Type6590 { get; set; } + public global::GitHub.GistsGetCommentResponse? Type6590 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6591 { get; set; } + public global::GitHub.GistsGetCommentResponseBlock? Type6591 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6592 { get; set; } + public global::System.Collections.Generic.IList? Type6592 { get; set; } /// /// /// - public global::GitHub.GistsCheckIsStarredResponse? Type6593 { get; set; } + public global::System.Collections.Generic.IList? Type6593 { get; set; } /// /// /// - public global::GitHub.AppsListReposAccessibleToInstallationResponse? Type6594 { get; set; } + public global::GitHub.GistsCheckIsStarredResponse? Type6594 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6595 { get; set; } + public global::GitHub.AppsListReposAccessibleToInstallationResponse? Type6595 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6596 { get; set; } + public global::System.Collections.Generic.IList? Type6596 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6597 { get; set; } + public global::System.Collections.Generic.IList? Type6597 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6598 { get; set; } + public global::System.Collections.Generic.IList? Type6598 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6599 { get; set; } + public global::System.Collections.Generic.IList? Type6599 { get; set; } /// /// /// - public global::GitHub.ActivityMarkNotificationsAsReadResponse? Type6600 { get; set; } + public global::System.Collections.Generic.IList? Type6600 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6601 { get; set; } + public global::GitHub.ActivityMarkNotificationsAsReadResponse? Type6601 { get; set; } /// /// /// - public global::GitHub.BillingGetGithubBillingUsageReportOrgResponse? Type6602 { get; set; } + public global::System.Collections.Generic.IList? Type6602 { get; set; } /// /// /// - public global::GitHub.OneOf? Type6603 { get; set; } + public global::GitHub.BillingGetGithubBillingUsageReportOrgResponse? Type6603 { get; set; } /// /// /// - public global::GitHub.ActionsGetActionsCacheUsageByRepoForOrgResponse? Type6604 { get; set; } + public global::GitHub.OneOf? Type6604 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6605 { get; set; } + public global::GitHub.ActionsGetActionsCacheUsageByRepoForOrgResponse? Type6605 { get; set; } /// /// /// - public global::GitHub.ActionsListHostedRunnersForOrgResponse? Type6606 { get; set; } + public global::System.Collections.Generic.IList? Type6606 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6607 { get; set; } + public global::GitHub.ActionsListHostedRunnersForOrgResponse? Type6607 { get; set; } /// /// /// - public global::GitHub.ActionsGetHostedRunnersGithubOwnedImagesForOrgResponse? Type6608 { get; set; } + public global::System.Collections.Generic.IList? Type6608 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6609 { get; set; } + public global::GitHub.ActionsGetHostedRunnersGithubOwnedImagesForOrgResponse? Type6609 { get; set; } /// /// /// - public global::GitHub.ActionsGetHostedRunnersPartnerImagesForOrgResponse? Type6610 { get; set; } + public global::System.Collections.Generic.IList? Type6610 { get; set; } /// /// /// - public global::GitHub.ActionsGetHostedRunnersMachineSpecsForOrgResponse? Type6611 { get; set; } + public global::GitHub.ActionsGetHostedRunnersPartnerImagesForOrgResponse? Type6611 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6612 { get; set; } + public global::GitHub.ActionsGetHostedRunnersMachineSpecsForOrgResponse? Type6612 { get; set; } /// /// /// - public global::GitHub.ActionsGetHostedRunnersPlatformsForOrgResponse? Type6613 { get; set; } + public global::System.Collections.Generic.IList? Type6613 { get; set; } /// /// /// - public global::GitHub.ActionsListSelectedRepositoriesEnabledGithubActionsOrganizationResponse? Type6614 { get; set; } + public global::GitHub.ActionsGetHostedRunnersPlatformsForOrgResponse? Type6614 { get; set; } /// /// /// - public global::GitHub.ActionsListSelectedRepositoriesSelfHostedRunnersOrganizationResponse? Type6615 { get; set; } + public global::GitHub.ActionsListSelectedRepositoriesEnabledGithubActionsOrganizationResponse? Type6615 { get; set; } /// /// /// - public global::GitHub.ActionsListSelfHostedRunnerGroupsForOrgResponse? Type6616 { get; set; } + public global::GitHub.ActionsListSelectedRepositoriesSelfHostedRunnersOrganizationResponse? Type6616 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6617 { get; set; } + public global::GitHub.ActionsListSelfHostedRunnerGroupsForOrgResponse? Type6617 { get; set; } /// /// /// - public global::GitHub.ActionsListGithubHostedRunnersInGroupForOrgResponse? Type6618 { get; set; } + public global::System.Collections.Generic.IList? Type6618 { get; set; } /// /// /// - public global::GitHub.ActionsListRepoAccessToSelfHostedRunnerGroupInOrgResponse? Type6619 { get; set; } + public global::GitHub.ActionsListGithubHostedRunnersInGroupForOrgResponse? Type6619 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6620 { get; set; } + public global::GitHub.ActionsListRepoAccessToSelfHostedRunnerGroupInOrgResponse? Type6620 { get; set; } /// /// /// - public global::GitHub.ActionsListSelfHostedRunnersInGroupForOrgResponse? Type6621 { get; set; } + public global::System.Collections.Generic.IList? Type6621 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6622 { get; set; } + public global::GitHub.ActionsListSelfHostedRunnersInGroupForOrgResponse? Type6622 { get; set; } /// /// /// - public global::GitHub.ActionsListSelfHostedRunnersForOrgResponse? Type6623 { get; set; } + public global::System.Collections.Generic.IList? Type6623 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6624 { get; set; } + public global::GitHub.ActionsListSelfHostedRunnersForOrgResponse? Type6624 { get; set; } /// /// /// - public global::GitHub.ActionsGenerateRunnerJitconfigForOrgResponse? Type6625 { get; set; } + public global::System.Collections.Generic.IList? Type6625 { get; set; } /// /// /// - public global::GitHub.ActionsListLabelsForSelfHostedRunnerForOrgResponse? Type6626 { get; set; } + public global::GitHub.ActionsGenerateRunnerJitconfigForOrgResponse? Type6626 { get; set; } /// /// /// - public global::GitHub.ActionsAddCustomLabelsToSelfHostedRunnerForOrgResponse? Type6627 { get; set; } + public global::GitHub.ActionsListLabelsForSelfHostedRunnerForOrgResponse? Type6627 { get; set; } /// /// /// - public global::GitHub.ActionsSetCustomLabelsForSelfHostedRunnerForOrgResponse? Type6628 { get; set; } + public global::GitHub.ActionsAddCustomLabelsToSelfHostedRunnerForOrgResponse? Type6628 { get; set; } /// /// /// - public global::GitHub.ActionsRemoveAllCustomLabelsFromSelfHostedRunnerForOrgResponse? Type6629 { get; set; } + public global::GitHub.ActionsSetCustomLabelsForSelfHostedRunnerForOrgResponse? Type6629 { get; set; } /// /// /// - public global::GitHub.ActionsRemoveCustomLabelFromSelfHostedRunnerForOrgResponse? Type6630 { get; set; } + public global::GitHub.ActionsRemoveAllCustomLabelsFromSelfHostedRunnerForOrgResponse? Type6630 { get; set; } /// /// /// - public global::GitHub.ActionsListOrgSecretsResponse? Type6631 { get; set; } + public global::GitHub.ActionsRemoveCustomLabelFromSelfHostedRunnerForOrgResponse? Type6631 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6632 { get; set; } + public global::GitHub.ActionsListOrgSecretsResponse? Type6632 { get; set; } /// /// /// - public global::GitHub.ActionsListSelectedReposForOrgSecretResponse? Type6633 { get; set; } + public global::System.Collections.Generic.IList? Type6633 { get; set; } /// /// /// - public global::GitHub.ActionsListOrgVariablesResponse? Type6634 { get; set; } + public global::GitHub.ActionsListSelectedReposForOrgSecretResponse? Type6634 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6635 { get; set; } + public global::GitHub.ActionsListOrgVariablesResponse? Type6635 { get; set; } /// /// /// - public global::GitHub.ActionsListSelectedReposForOrgVariableResponse? Type6636 { get; set; } + public global::System.Collections.Generic.IList? Type6636 { get; set; } /// /// /// - public global::GitHub.OrgsCreateArtifactStorageRecordResponse? Type6637 { get; set; } + public global::GitHub.ActionsListSelectedReposForOrgVariableResponse? Type6637 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6638 { get; set; } + public global::GitHub.OrgsCreateArtifactStorageRecordResponse? Type6638 { get; set; } /// /// /// - public global::GitHub.OrgsCreateArtifactStorageRecordResponseStorageRecord? Type6639 { get; set; } + public global::System.Collections.Generic.IList? Type6639 { get; set; } /// /// /// - public global::GitHub.OrgsListArtifactStorageRecordsResponse? Type6640 { get; set; } + public global::GitHub.OrgsCreateArtifactStorageRecordResponseStorageRecord? Type6640 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6641 { get; set; } + public global::GitHub.OrgsListArtifactStorageRecordsResponse? Type6641 { get; set; } /// /// /// - public global::GitHub.OrgsListArtifactStorageRecordsResponseStorageRecord? Type6642 { get; set; } + public global::System.Collections.Generic.IList? Type6642 { get; set; } /// /// /// - public global::GitHub.OrgsListAttestationsBulkResponse? Type6643 { get; set; } + public global::GitHub.OrgsListArtifactStorageRecordsResponseStorageRecord? Type6643 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary?>? Type6644 { get; set; } + public global::GitHub.OrgsListAttestationsBulkResponse? Type6644 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6645 { get; set; } + public global::System.Collections.Generic.Dictionary?>? Type6645 { get; set; } /// /// /// - public global::GitHub.OrgsListAttestationsBulkResponseAttestationsSubjectDigest? Type6646 { get; set; } + public global::System.Collections.Generic.IList? Type6646 { get; set; } /// /// /// - public global::GitHub.OrgsListAttestationsBulkResponseAttestationsSubjectDigestBundle? Type6647 { get; set; } + public global::GitHub.OrgsListAttestationsBulkResponseAttestationsSubjectDigest? Type6647 { get; set; } /// /// /// - public global::GitHub.OrgsListAttestationsBulkResponsePageInfo? Type6648 { get; set; } + public global::GitHub.OrgsListAttestationsBulkResponseAttestationsSubjectDigestBundle? Type6648 { get; set; } /// /// /// - public global::GitHub.OrgsListAttestationsResponse? Type6649 { get; set; } + public global::GitHub.OrgsListAttestationsBulkResponsePageInfo? Type6649 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6650 { get; set; } + public global::GitHub.OrgsListAttestationsResponse? Type6650 { get; set; } /// /// /// - public global::GitHub.OrgsListAttestationsResponseAttestation? Type6651 { get; set; } + public global::System.Collections.Generic.IList? Type6651 { get; set; } /// /// /// - public global::GitHub.OrgsListAttestationsResponseAttestationBundle? Type6652 { get; set; } + public global::GitHub.OrgsListAttestationsResponseAttestation? Type6652 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6653 { get; set; } + public global::GitHub.OrgsListAttestationsResponseAttestationBundle? Type6653 { get; set; } /// /// /// - public global::GitHub.CampaignsListOrgCampaignsResponse? Type6654 { get; set; } + public global::System.Collections.Generic.IList? Type6654 { get; set; } /// /// /// - public global::GitHub.CampaignsCreateCampaignResponse? Type6655 { get; set; } + public global::GitHub.CampaignsListOrgCampaignsResponse? Type6655 { get; set; } /// /// /// - public global::GitHub.CampaignsGetCampaignSummaryResponse? Type6656 { get; set; } + public global::GitHub.CampaignsCreateCampaignResponse? Type6656 { get; set; } /// /// /// - public global::GitHub.CampaignsUpdateCampaignResponse? Type6657 { get; set; } + public global::GitHub.CampaignsGetCampaignSummaryResponse? Type6657 { get; set; } /// /// /// - public global::GitHub.CampaignsDeleteCampaignResponse? Type6658 { get; set; } + public global::GitHub.CampaignsUpdateCampaignResponse? Type6658 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6659 { get; set; } + public global::GitHub.CampaignsDeleteCampaignResponse? Type6659 { get; set; } /// /// /// - public global::GitHub.CodeScanningListAlertsForOrgResponse? Type6660 { get; set; } + public global::System.Collections.Generic.IList? Type6660 { get; set; } /// /// /// - public global::GitHub.CodeSecuritySetConfigurationAsDefaultResponse? Type6661 { get; set; } + public global::GitHub.CodeScanningListAlertsForOrgResponse? Type6661 { get; set; } /// /// /// - public global::GitHub.CodeSecuritySetConfigurationAsDefaultResponseDefaultForNewRepos? Type6662 { get; set; } + public global::GitHub.CodeSecuritySetConfigurationAsDefaultResponse? Type6662 { get; set; } /// /// /// - public global::GitHub.CodespacesListInOrganizationResponse? Type6663 { get; set; } + public global::GitHub.CodeSecuritySetConfigurationAsDefaultResponseDefaultForNewRepos? Type6663 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6664 { get; set; } + public global::GitHub.CodespacesListInOrganizationResponse? Type6664 { get; set; } /// /// /// - public global::GitHub.CodespacesListOrgSecretsResponse? Type6665 { get; set; } + public global::System.Collections.Generic.IList? Type6665 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6666 { get; set; } + public global::GitHub.CodespacesListOrgSecretsResponse? Type6666 { get; set; } /// /// /// - public global::GitHub.CodespacesListSelectedReposForOrgSecretResponse? Type6667 { get; set; } + public global::System.Collections.Generic.IList? Type6667 { get; set; } /// /// /// - public global::GitHub.CopilotListCopilotSeatsResponse? Type6668 { get; set; } + public global::GitHub.CodespacesListSelectedReposForOrgSecretResponse? Type6668 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6669 { get; set; } + public global::GitHub.CopilotListCopilotSeatsResponse? Type6669 { get; set; } /// /// /// - public global::GitHub.CopilotAddCopilotSeatsForTeamsResponse? Type6670 { get; set; } + public global::System.Collections.Generic.IList? Type6670 { get; set; } /// /// /// - public global::GitHub.CopilotCancelCopilotSeatAssignmentForTeamsResponse? Type6671 { get; set; } + public global::GitHub.CopilotAddCopilotSeatsForTeamsResponse? Type6671 { get; set; } /// /// /// - public global::GitHub.CopilotAddCopilotSeatsForUsersResponse? Type6672 { get; set; } + public global::GitHub.CopilotCancelCopilotSeatAssignmentForTeamsResponse? Type6672 { get; set; } /// /// /// - public global::GitHub.CopilotCancelCopilotSeatAssignmentForUsersResponse? Type6673 { get; set; } + public global::GitHub.CopilotAddCopilotSeatsForUsersResponse? Type6673 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6674 { get; set; } + public global::GitHub.CopilotCancelCopilotSeatAssignmentForUsersResponse? Type6674 { get; set; } /// /// /// - public global::GitHub.DependabotListOrgSecretsResponse? Type6675 { get; set; } + public global::System.Collections.Generic.IList? Type6675 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6676 { get; set; } + public global::GitHub.DependabotListOrgSecretsResponse? Type6676 { get; set; } /// /// /// - public global::GitHub.DependabotListSelectedReposForOrgSecretResponse? Type6677 { get; set; } + public global::System.Collections.Generic.IList? Type6677 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6678 { get; set; } + public global::GitHub.DependabotListSelectedReposForOrgSecretResponse? Type6678 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6679 { get; set; } + public global::System.Collections.Generic.IList? Type6679 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6680 { get; set; } + public global::System.Collections.Generic.IList? Type6680 { get; set; } /// /// /// - public global::GitHub.OrgsListAppInstallationsResponse? Type6681 { get; set; } + public global::System.Collections.Generic.IList? Type6681 { get; set; } /// /// /// - public global::GitHub.AnyOf? Type6682 { get; set; } + public global::GitHub.OrgsListAppInstallationsResponse? Type6682 { get; set; } /// /// /// - public global::GitHub.InteractionsGetRestrictionsForOrgResponse2? Type6683 { get; set; } + public global::GitHub.AnyOf? Type6683 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6684 { get; set; } + public global::GitHub.InteractionsGetRestrictionsForOrgResponse2? Type6684 { get; set; } /// /// /// - public global::GitHub.CodespacesGetCodespacesForUserInOrgResponse? Type6685 { get; set; } + public global::System.Collections.Generic.IList? Type6685 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6686 { get; set; } + public global::GitHub.CodespacesGetCodespacesForUserInOrgResponse? Type6686 { get; set; } /// /// /// - public global::GitHub.OrgsListOrgRolesResponse? Type6687 { get; set; } + public global::System.Collections.Generic.IList? Type6687 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6688 { get; set; } + public global::GitHub.OrgsListOrgRolesResponse? Type6688 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6689 { get; set; } + public global::System.Collections.Generic.IList? Type6689 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6690 { get; set; } + public global::System.Collections.Generic.IList? Type6690 { get; set; } /// /// /// - public global::GitHub.OrgsConvertMemberToOutsideCollaboratorResponse? Type6691 { get; set; } + public global::System.Collections.Generic.IList? Type6691 { get; set; } /// /// /// - public global::GitHub.OrgsRemoveOutsideCollaboratorResponse? Type6692 { get; set; } + public global::GitHub.OrgsConvertMemberToOutsideCollaboratorResponse? Type6692 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6693 { get; set; } + public global::GitHub.OrgsRemoveOutsideCollaboratorResponse? Type6693 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6694 { get; set; } + public global::System.Collections.Generic.IList? Type6694 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6695 { get; set; } + public global::System.Collections.Generic.IList? Type6695 { get; set; } /// /// /// - public global::GitHub.PrivateRegistriesListOrgPrivateRegistriesResponse? Type6696 { get; set; } + public global::System.Collections.Generic.IList? Type6696 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6697 { get; set; } + public global::GitHub.PrivateRegistriesListOrgPrivateRegistriesResponse? Type6697 { get; set; } /// /// /// - public global::GitHub.PrivateRegistriesGetOrgPublicKeyResponse? Type6698 { get; set; } + public global::System.Collections.Generic.IList? Type6698 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6699 { get; set; } + public global::GitHub.PrivateRegistriesGetOrgPublicKeyResponse? Type6699 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6700 { get; set; } + public global::System.Collections.Generic.IList? Type6700 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6701 { get; set; } + public global::System.Collections.Generic.IList? Type6701 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6702 { get; set; } + public global::System.Collections.Generic.IList? Type6702 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6703 { get; set; } + public global::System.Collections.Generic.IList? Type6703 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6704 { get; set; } + public global::System.Collections.Generic.IList? Type6704 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6705 { get; set; } + public global::System.Collections.Generic.IList? Type6705 { get; set; } /// /// /// - public global::GitHub.SecretScanningListAlertsForOrgResponse? Type6706 { get; set; } + public global::System.Collections.Generic.IList? Type6706 { get; set; } /// /// /// - public global::GitHub.SecretScanningUpdateOrgPatternConfigsResponse? Type6707 { get; set; } + public global::GitHub.SecretScanningListAlertsForOrgResponse? Type6707 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6708 { get; set; } + public global::GitHub.SecretScanningUpdateOrgPatternConfigsResponse? Type6708 { get; set; } /// /// /// - public global::GitHub.HostedComputeListNetworkConfigurationsForOrgResponse? Type6709 { get; set; } + public global::System.Collections.Generic.IList? Type6709 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6710 { get; set; } + public global::GitHub.HostedComputeListNetworkConfigurationsForOrgResponse? Type6710 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6711 { get; set; } + public global::System.Collections.Generic.IList? Type6711 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6712 { get; set; } + public global::System.Collections.Generic.IList? Type6712 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6713 { get; set; } + public global::System.Collections.Generic.IList? Type6713 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6714 { get; set; } + public global::System.Collections.Generic.IList? Type6714 { get; set; } /// /// /// - public global::GitHub.TeamsAddOrUpdateProjectPermissionsInOrgResponse? Type6715 { get; set; } + public global::System.Collections.Generic.IList? Type6715 { get; set; } /// /// /// - public global::GitHub.ProjectsClassicMoveColumnResponse? Type6716 { get; set; } + public global::GitHub.TeamsAddOrUpdateProjectPermissionsInOrgResponse? Type6716 { get; set; } /// /// /// - public global::GitHub.ProjectsClassicUpdateResponse? Type6717 { get; set; } + public global::GitHub.ProjectsClassicMoveColumnResponse? Type6717 { get; set; } /// /// /// - public global::GitHub.ProjectsClassicDeleteResponse? Type6718 { get; set; } + public global::GitHub.ProjectsClassicUpdateResponse? Type6718 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6719 { get; set; } + public global::GitHub.ProjectsClassicDeleteResponse? Type6719 { get; set; } /// /// /// - public global::GitHub.ReposDeleteResponse? Type6720 { get; set; } + public global::System.Collections.Generic.IList? Type6720 { get; set; } /// /// /// - public global::GitHub.ActionsListArtifactsForRepoResponse? Type6721 { get; set; } + public global::GitHub.ReposDeleteResponse? Type6721 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6722 { get; set; } + public global::GitHub.ActionsListArtifactsForRepoResponse? Type6722 { get; set; } /// /// /// - public global::GitHub.ActionsListRepoOrganizationSecretsResponse? Type6723 { get; set; } + public global::System.Collections.Generic.IList? Type6723 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6724 { get; set; } + public global::GitHub.ActionsListRepoOrganizationSecretsResponse? Type6724 { get; set; } /// /// /// - public global::GitHub.ActionsListRepoOrganizationVariablesResponse? Type6725 { get; set; } + public global::System.Collections.Generic.IList? Type6725 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6726 { get; set; } + public global::GitHub.ActionsListRepoOrganizationVariablesResponse? Type6726 { get; set; } /// /// /// - public global::GitHub.ActionsListSelfHostedRunnersForRepoResponse? Type6727 { get; set; } + public global::System.Collections.Generic.IList? Type6727 { get; set; } /// /// /// - public global::GitHub.ActionsGenerateRunnerJitconfigForRepoResponse? Type6728 { get; set; } + public global::GitHub.ActionsListSelfHostedRunnersForRepoResponse? Type6728 { get; set; } /// /// /// - public global::GitHub.ActionsListLabelsForSelfHostedRunnerForRepoResponse? Type6729 { get; set; } + public global::GitHub.ActionsGenerateRunnerJitconfigForRepoResponse? Type6729 { get; set; } /// /// /// - public global::GitHub.ActionsAddCustomLabelsToSelfHostedRunnerForRepoResponse? Type6730 { get; set; } + public global::GitHub.ActionsListLabelsForSelfHostedRunnerForRepoResponse? Type6730 { get; set; } /// /// /// - public global::GitHub.ActionsSetCustomLabelsForSelfHostedRunnerForRepoResponse? Type6731 { get; set; } + public global::GitHub.ActionsAddCustomLabelsToSelfHostedRunnerForRepoResponse? Type6731 { get; set; } /// /// /// - public global::GitHub.ActionsRemoveAllCustomLabelsFromSelfHostedRunnerForRepoResponse? Type6732 { get; set; } + public global::GitHub.ActionsSetCustomLabelsForSelfHostedRunnerForRepoResponse? Type6732 { get; set; } /// /// /// - public global::GitHub.ActionsRemoveCustomLabelFromSelfHostedRunnerForRepoResponse? Type6733 { get; set; } + public global::GitHub.ActionsRemoveAllCustomLabelsFromSelfHostedRunnerForRepoResponse? Type6733 { get; set; } /// /// /// - public global::GitHub.ActionsListWorkflowRunsForRepoResponse? Type6734 { get; set; } + public global::GitHub.ActionsRemoveCustomLabelFromSelfHostedRunnerForRepoResponse? Type6734 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6735 { get; set; } + public global::GitHub.ActionsListWorkflowRunsForRepoResponse? Type6735 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6736 { get; set; } + public global::System.Collections.Generic.IList? Type6736 { get; set; } /// /// /// - public global::GitHub.ActionsListWorkflowRunArtifactsResponse? Type6737 { get; set; } + public global::System.Collections.Generic.IList? Type6737 { get; set; } /// /// /// - public global::GitHub.ActionsListJobsForWorkflowRunAttemptResponse? Type6738 { get; set; } + public global::GitHub.ActionsListWorkflowRunArtifactsResponse? Type6738 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6739 { get; set; } + public global::GitHub.ActionsListJobsForWorkflowRunAttemptResponse? Type6739 { get; set; } /// /// /// - public global::GitHub.ActionsListJobsForWorkflowRunResponse? Type6740 { get; set; } + public global::System.Collections.Generic.IList? Type6740 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6741 { get; set; } + public global::GitHub.ActionsListJobsForWorkflowRunResponse? Type6741 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6742 { get; set; } + public global::System.Collections.Generic.IList? Type6742 { get; set; } /// /// /// - public global::GitHub.ActionsListRepoSecretsResponse? Type6743 { get; set; } + public global::System.Collections.Generic.IList? Type6743 { get; set; } /// /// /// - public global::GitHub.ActionsListRepoVariablesResponse? Type6744 { get; set; } + public global::GitHub.ActionsListRepoSecretsResponse? Type6744 { get; set; } /// /// /// - public global::GitHub.ActionsListRepoWorkflowsResponse? Type6745 { get; set; } + public global::GitHub.ActionsListRepoVariablesResponse? Type6745 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6746 { get; set; } + public global::GitHub.ActionsListRepoWorkflowsResponse? Type6746 { get; set; } /// /// /// - public global::GitHub.ActionsListWorkflowRunsResponse? Type6747 { get; set; } + public global::System.Collections.Generic.IList? Type6747 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6748 { get; set; } + public global::GitHub.ActionsListWorkflowRunsResponse? Type6748 { get; set; } /// /// /// - public global::GitHub.ReposCreateAttestationResponse? Type6749 { get; set; } + public global::System.Collections.Generic.IList? Type6749 { get; set; } /// /// /// - public global::GitHub.ReposListAttestationsResponse? Type6750 { get; set; } + public global::GitHub.ReposCreateAttestationResponse? Type6750 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6751 { get; set; } + public global::GitHub.ReposListAttestationsResponse? Type6751 { get; set; } /// /// /// - public global::GitHub.ReposListAttestationsResponseAttestation? Type6752 { get; set; } + public global::System.Collections.Generic.IList? Type6752 { get; set; } /// /// /// - public global::GitHub.ReposListAttestationsResponseAttestationBundle? Type6753 { get; set; } + public global::GitHub.ReposListAttestationsResponseAttestation? Type6753 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6754 { get; set; } + public global::GitHub.ReposListAttestationsResponseAttestationBundle? Type6754 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6755 { get; set; } + public global::System.Collections.Generic.IList? Type6755 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6756 { get; set; } + public global::System.Collections.Generic.IList? Type6756 { get; set; } /// /// /// - public global::GitHub.ChecksListForSuiteResponse? Type6757 { get; set; } + public global::System.Collections.Generic.IList? Type6757 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6758 { get; set; } + public global::GitHub.ChecksListForSuiteResponse? Type6758 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6759 { get; set; } + public global::System.Collections.Generic.IList? Type6759 { get; set; } /// /// /// - public global::GitHub.CodeScanningListAlertsForRepoResponse? Type6760 { get; set; } + public global::System.Collections.Generic.IList? Type6760 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetAlertResponse? Type6761 { get; set; } + public global::GitHub.CodeScanningListAlertsForRepoResponse? Type6761 { get; set; } /// /// /// - public global::GitHub.CodeScanningUpdateAlertResponse? Type6762 { get; set; } + public global::GitHub.CodeScanningGetAlertResponse? Type6762 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetAutofixResponse? Type6763 { get; set; } + public global::GitHub.CodeScanningUpdateAlertResponse? Type6763 { get; set; } /// /// /// - public global::GitHub.CodeScanningCreateAutofixResponse? Type6764 { get; set; } + public global::GitHub.CodeScanningGetAutofixResponse? Type6764 { get; set; } /// /// /// - public global::GitHub.CodeScanningCommitAutofixResponse? Type6765 { get; set; } + public global::GitHub.CodeScanningCreateAutofixResponse? Type6765 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6766 { get; set; } + public global::GitHub.CodeScanningCommitAutofixResponse? Type6766 { get; set; } /// /// /// - public global::GitHub.CodeScanningListAlertInstancesResponse? Type6767 { get; set; } + public global::System.Collections.Generic.IList? Type6767 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6768 { get; set; } + public global::GitHub.CodeScanningListAlertInstancesResponse? Type6768 { get; set; } /// /// /// - public global::GitHub.CodeScanningListRecentAnalysesResponse? Type6769 { get; set; } + public global::System.Collections.Generic.IList? Type6769 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetAnalysisResponse2? Type6770 { get; set; } + public global::GitHub.CodeScanningListRecentAnalysesResponse? Type6770 { get; set; } /// /// /// - public global::GitHub.CodeScanningDeleteAnalysisResponse? Type6771 { get; set; } + public global::GitHub.CodeScanningGetAnalysisResponse2? Type6771 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6772 { get; set; } + public global::GitHub.CodeScanningDeleteAnalysisResponse? Type6772 { get; set; } /// /// /// - public global::GitHub.CodeScanningListCodeqlDatabasesResponse? Type6773 { get; set; } + public global::System.Collections.Generic.IList? Type6773 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetCodeqlDatabaseResponse? Type6774 { get; set; } + public global::GitHub.CodeScanningListCodeqlDatabasesResponse? Type6774 { get; set; } /// /// /// - public global::GitHub.CodeScanningDeleteCodeqlDatabaseResponse? Type6775 { get; set; } + public global::GitHub.CodeScanningGetCodeqlDatabaseResponse? Type6775 { get; set; } /// /// /// - public global::GitHub.CodeScanningCreateVariantAnalysisResponse? Type6776 { get; set; } + public global::GitHub.CodeScanningDeleteCodeqlDatabaseResponse? Type6776 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetVariantAnalysisResponse? Type6777 { get; set; } + public global::GitHub.CodeScanningCreateVariantAnalysisResponse? Type6777 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetVariantAnalysisRepoTaskResponse? Type6778 { get; set; } + public global::GitHub.CodeScanningGetVariantAnalysisResponse? Type6778 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetDefaultSetupResponse? Type6779 { get; set; } + public global::GitHub.CodeScanningGetVariantAnalysisRepoTaskResponse? Type6779 { get; set; } /// /// /// - public global::GitHub.CodeScanningUpdateDefaultSetupResponse? Type6780 { get; set; } + public global::GitHub.CodeScanningGetDefaultSetupResponse? Type6780 { get; set; } /// /// /// - public global::GitHub.CodeScanningUploadSarifResponse? Type6781 { get; set; } + public global::GitHub.CodeScanningUpdateDefaultSetupResponse? Type6781 { get; set; } /// /// /// - public global::GitHub.CodeScanningGetSarifResponse? Type6782 { get; set; } + public global::GitHub.CodeScanningUploadSarifResponse? Type6782 { get; set; } /// /// /// - public global::GitHub.CodespacesListInRepositoryForAuthenticatedUserResponse? Type6783 { get; set; } + public global::GitHub.CodeScanningGetSarifResponse? Type6783 { get; set; } /// /// /// - public global::GitHub.CodespacesCreateWithRepoForAuthenticatedUserResponse? Type6784 { get; set; } + public global::GitHub.CodespacesListInRepositoryForAuthenticatedUserResponse? Type6784 { get; set; } /// /// /// - public global::GitHub.CodespacesListDevcontainersInRepositoryForAuthenticatedUserResponse? Type6785 { get; set; } + public global::GitHub.CodespacesCreateWithRepoForAuthenticatedUserResponse? Type6785 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6786 { get; set; } + public global::GitHub.CodespacesListDevcontainersInRepositoryForAuthenticatedUserResponse? Type6786 { get; set; } /// /// /// - public global::GitHub.CodespacesListDevcontainersInRepositoryForAuthenticatedUserResponseDevcontainer? Type6787 { get; set; } + public global::System.Collections.Generic.IList? Type6787 { get; set; } /// /// /// - public global::GitHub.CodespacesRepoMachinesForAuthenticatedUserResponse? Type6788 { get; set; } + public global::GitHub.CodespacesListDevcontainersInRepositoryForAuthenticatedUserResponseDevcontainer? Type6788 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6789 { get; set; } + public global::GitHub.CodespacesRepoMachinesForAuthenticatedUserResponse? Type6789 { get; set; } /// /// /// - public global::GitHub.CodespacesPreFlightWithRepoForAuthenticatedUserResponse? Type6790 { get; set; } + public global::System.Collections.Generic.IList? Type6790 { get; set; } /// /// /// - public global::GitHub.CodespacesPreFlightWithRepoForAuthenticatedUserResponseDefaults? Type6791 { get; set; } + public global::GitHub.CodespacesPreFlightWithRepoForAuthenticatedUserResponse? Type6791 { get; set; } /// /// /// - public global::GitHub.CodespacesCheckPermissionsForDevcontainerResponse? Type6792 { get; set; } + public global::GitHub.CodespacesPreFlightWithRepoForAuthenticatedUserResponseDefaults? Type6792 { get; set; } /// /// /// - public global::GitHub.CodespacesListRepoSecretsResponse? Type6793 { get; set; } + public global::GitHub.CodespacesCheckPermissionsForDevcontainerResponse? Type6793 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6794 { get; set; } + public global::GitHub.CodespacesListRepoSecretsResponse? Type6794 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6795 { get; set; } + public global::System.Collections.Generic.IList? Type6795 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6796 { get; set; } + public global::System.Collections.Generic.IList? Type6796 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6797 { get; set; } + public global::System.Collections.Generic.IList? Type6797 { get; set; } /// /// /// - public global::GitHub.ReposGetCommitResponse? Type6798 { get; set; } + public global::System.Collections.Generic.IList? Type6798 { get; set; } /// /// /// - public global::GitHub.ChecksListForRefResponse? Type6799 { get; set; } + public global::GitHub.ReposGetCommitResponse? Type6799 { get; set; } /// /// /// - public global::GitHub.ChecksListSuitesForRefResponse? Type6800 { get; set; } + public global::GitHub.ChecksListForRefResponse? Type6800 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6801 { get; set; } + public global::GitHub.ChecksListSuitesForRefResponse? Type6801 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6802 { get; set; } + public global::System.Collections.Generic.IList? Type6802 { get; set; } /// /// /// - public global::GitHub.ReposCompareCommitsResponse? Type6803 { get; set; } + public global::System.Collections.Generic.IList? Type6803 { get; set; } /// /// /// - public global::GitHub.ReposGetContentResponse? Type6804 { get; set; } + public global::GitHub.ReposCompareCommitsResponse? Type6804 { get; set; } /// /// /// - public global::GitHub.ReposGetContentResponseDiscriminator? Type6805 { get; set; } + public global::GitHub.ReposGetContentResponse? Type6805 { get; set; } /// /// /// - public global::GitHub.ReposGetContentResponseDiscriminatorType? Type6806 { get; set; } + public global::GitHub.ReposGetContentResponseDiscriminator? Type6806 { get; set; } /// /// /// - public global::GitHub.OneOf? Type6807 { get; set; } + public global::GitHub.ReposGetContentResponseDiscriminatorType? Type6807 { get; set; } /// /// /// - public global::GitHub.ReposDeleteFileResponse? Type6808 { get; set; } + public global::GitHub.OneOf? Type6808 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6809 { get; set; } + public global::GitHub.ReposDeleteFileResponse? Type6809 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6810 { get; set; } + public global::System.Collections.Generic.IList? Type6810 { get; set; } /// /// /// - public global::GitHub.DependabotListRepoSecretsResponse? Type6811 { get; set; } + public global::System.Collections.Generic.IList? Type6811 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6812 { get; set; } + public global::GitHub.DependabotListRepoSecretsResponse? Type6812 { get; set; } /// /// /// - public global::GitHub.DependencyGraphCreateRepositorySnapshotResponse? Type6813 { get; set; } + public global::System.Collections.Generic.IList? Type6813 { get; set; } /// /// /// - public global::GitHub.ReposCreateDeploymentResponse? Type6814 { get; set; } + public global::GitHub.DependencyGraphCreateRepositorySnapshotResponse? Type6814 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6815 { get; set; } + public global::GitHub.ReposCreateDeploymentResponse? Type6815 { get; set; } /// /// /// - public global::GitHub.ReposGetAllEnvironmentsResponse? Type6816 { get; set; } + public global::System.Collections.Generic.IList? Type6816 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6817 { get; set; } + public global::GitHub.ReposGetAllEnvironmentsResponse? Type6817 { get; set; } /// /// /// - public global::GitHub.ReposListDeploymentBranchPoliciesResponse? Type6818 { get; set; } + public global::System.Collections.Generic.IList? Type6818 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6819 { get; set; } + public global::GitHub.ReposListDeploymentBranchPoliciesResponse? Type6819 { get; set; } /// /// /// - public global::GitHub.ReposGetAllDeploymentProtectionRulesResponse? Type6820 { get; set; } + public global::System.Collections.Generic.IList? Type6820 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6821 { get; set; } + public global::GitHub.ReposGetAllDeploymentProtectionRulesResponse? Type6821 { get; set; } /// /// /// - public global::GitHub.ReposListCustomDeploymentRuleIntegrationsResponse? Type6822 { get; set; } + public global::System.Collections.Generic.IList? Type6822 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6823 { get; set; } + public global::GitHub.ReposListCustomDeploymentRuleIntegrationsResponse? Type6823 { get; set; } /// /// /// - public global::GitHub.ActionsListEnvironmentSecretsResponse? Type6824 { get; set; } + public global::System.Collections.Generic.IList? Type6824 { get; set; } /// /// /// - public global::GitHub.ActionsListEnvironmentVariablesResponse? Type6825 { get; set; } + public global::GitHub.ActionsListEnvironmentSecretsResponse? Type6825 { get; set; } /// /// /// - public global::GitHub.OneOf? Type6826 { get; set; } + public global::GitHub.ActionsListEnvironmentVariablesResponse? Type6826 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6827 { get; set; } + public global::GitHub.OneOf? Type6827 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6828 { get; set; } + public global::System.Collections.Generic.IList? Type6828 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6829 { get; set; } + public global::System.Collections.Generic.IList? Type6829 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6830 { get; set; } + public global::System.Collections.Generic.IList? Type6830 { get; set; } /// /// /// - public global::GitHub.AnyOf? Type6831 { get; set; } + public global::System.Collections.Generic.IList? Type6831 { get; set; } /// /// /// - public global::GitHub.InteractionsGetRestrictionsForRepoResponse2? Type6832 { get; set; } + public global::GitHub.AnyOf? Type6832 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6833 { get; set; } + public global::GitHub.InteractionsGetRestrictionsForRepoResponse2? Type6833 { get; set; } /// /// /// - public global::GitHub.IssuesCreateResponse? Type6834 { get; set; } + public global::System.Collections.Generic.IList? Type6834 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6835 { get; set; } + public global::GitHub.IssuesCreateResponse? Type6835 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6836 { get; set; } + public global::System.Collections.Generic.IList? Type6836 { get; set; } /// /// /// - public global::GitHub.IssuesUpdateResponse? Type6837 { get; set; } + public global::System.Collections.Generic.IList? Type6837 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6838 { get; set; } + public global::GitHub.IssuesUpdateResponse? Type6838 { get; set; } /// /// /// - public global::GitHub.IssuesReprioritizeSubIssueResponse? Type6839 { get; set; } + public global::System.Collections.Generic.IList? Type6839 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6840 { get; set; } + public global::GitHub.IssuesReprioritizeSubIssueResponse? Type6840 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6841 { get; set; } + public global::System.Collections.Generic.IList? Type6841 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6842 { get; set; } + public global::System.Collections.Generic.IList? Type6842 { get; set; } /// /// /// - public global::GitHub.ActivityMarkRepoNotificationsAsReadResponse? Type6843 { get; set; } + public global::System.Collections.Generic.IList? Type6843 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6844 { get; set; } + public global::GitHub.ActivityMarkRepoNotificationsAsReadResponse? Type6844 { get; set; } /// /// /// - public global::GitHub.ReposCheckPrivateVulnerabilityReportingResponse? Type6845 { get; set; } + public global::System.Collections.Generic.IList? Type6845 { get; set; } /// /// /// - public global::GitHub.PullsGetResponse? Type6846 { get; set; } + public global::GitHub.ReposCheckPrivateVulnerabilityReportingResponse? Type6846 { get; set; } /// /// /// - public global::GitHub.CodespacesCreateWithPrForAuthenticatedUserResponse? Type6847 { get; set; } + public global::GitHub.PullsGetResponse? Type6847 { get; set; } /// /// /// - public global::GitHub.PullsListFilesResponse? Type6848 { get; set; } + public global::GitHub.CodespacesCreateWithPrForAuthenticatedUserResponse? Type6848 { get; set; } /// /// /// - public global::GitHub.PullsMergeResponse? Type6849 { get; set; } + public global::GitHub.PullsListFilesResponse? Type6849 { get; set; } /// /// /// - public global::GitHub.PullsMergeResponse2? Type6850 { get; set; } + public global::GitHub.PullsMergeResponse? Type6850 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6851 { get; set; } + public global::GitHub.PullsMergeResponse2? Type6851 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6852 { get; set; } + public global::System.Collections.Generic.IList? Type6852 { get; set; } /// /// /// - public global::GitHub.PullsUpdateBranchResponse? Type6853 { get; set; } + public global::System.Collections.Generic.IList? Type6853 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6854 { get; set; } + public global::GitHub.PullsUpdateBranchResponse? Type6854 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6855 { get; set; } + public global::System.Collections.Generic.IList? Type6855 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6856 { get; set; } + public global::System.Collections.Generic.IList? Type6856 { get; set; } /// /// /// - public global::GitHub.SecretScanningListAlertsForRepoResponse? Type6857 { get; set; } + public global::System.Collections.Generic.IList? Type6857 { get; set; } /// /// /// - public global::GitHub.SecretScanningGetAlertResponse? Type6858 { get; set; } + public global::GitHub.SecretScanningListAlertsForRepoResponse? Type6858 { get; set; } /// /// /// - public global::GitHub.SecretScanningUpdateAlertResponse? Type6859 { get; set; } + public global::GitHub.SecretScanningGetAlertResponse? Type6859 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6860 { get; set; } + public global::GitHub.SecretScanningUpdateAlertResponse? Type6860 { get; set; } /// /// /// - public global::GitHub.SecretScanningListLocationsForAlertResponse? Type6861 { get; set; } + public global::System.Collections.Generic.IList? Type6861 { get; set; } /// /// /// - public global::GitHub.SecretScanningCreatePushProtectionBypassResponse? Type6862 { get; set; } + public global::GitHub.SecretScanningListLocationsForAlertResponse? Type6862 { get; set; } /// /// /// - public global::GitHub.SecretScanningGetScanHistoryResponse? Type6863 { get; set; } + public global::GitHub.SecretScanningCreatePushProtectionBypassResponse? Type6863 { get; set; } /// /// /// - public global::GitHub.AnyOf, global::System.Collections.Generic.IList>? Type6864 { get; set; } + public global::GitHub.SecretScanningGetScanHistoryResponse? Type6864 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6865 { get; set; } + public global::GitHub.AnyOf, global::System.Collections.Generic.IList>? Type6865 { get; set; } /// /// /// - public global::System.Collections.Generic.IList>? Type6866 { get; set; } + public global::System.Collections.Generic.IList? Type6866 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6867 { get; set; } + public global::System.Collections.Generic.IList>? Type6867 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6868 { get; set; } + public global::System.Collections.Generic.IList? Type6868 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6869 { get; set; } + public global::System.Collections.Generic.IList? Type6869 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6870 { get; set; } + public global::System.Collections.Generic.IList? Type6870 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6871 { get; set; } + public global::System.Collections.Generic.IList? Type6871 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6872 { get; set; } + public global::System.Collections.Generic.IList? Type6872 { get; set; } /// /// /// - public global::GitHub.SearchCodeResponse? Type6873 { get; set; } + public global::System.Collections.Generic.IList? Type6873 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6874 { get; set; } + public global::GitHub.SearchCodeResponse? Type6874 { get; set; } /// /// /// - public global::GitHub.SearchCodeResponse2? Type6875 { get; set; } + public global::System.Collections.Generic.IList? Type6875 { get; set; } /// /// /// - public global::GitHub.SearchCommitsResponse? Type6876 { get; set; } + public global::GitHub.SearchCodeResponse2? Type6876 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6877 { get; set; } + public global::GitHub.SearchCommitsResponse? Type6877 { get; set; } /// /// /// - public global::GitHub.SearchIssuesAndPullRequestsResponse? Type6878 { get; set; } + public global::System.Collections.Generic.IList? Type6878 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6879 { get; set; } + public global::GitHub.SearchIssuesAndPullRequestsResponse? Type6879 { get; set; } /// /// /// - public global::GitHub.SearchIssuesAndPullRequestsResponse2? Type6880 { get; set; } + public global::System.Collections.Generic.IList? Type6880 { get; set; } /// /// /// - public global::GitHub.SearchLabelsResponse? Type6881 { get; set; } + public global::GitHub.SearchIssuesAndPullRequestsResponse2? Type6881 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6882 { get; set; } + public global::GitHub.SearchLabelsResponse? Type6882 { get; set; } /// /// /// - public global::GitHub.SearchReposResponse? Type6883 { get; set; } + public global::System.Collections.Generic.IList? Type6883 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6884 { get; set; } + public global::GitHub.SearchReposResponse? Type6884 { get; set; } /// /// /// - public global::GitHub.SearchReposResponse2? Type6885 { get; set; } + public global::System.Collections.Generic.IList? Type6885 { get; set; } /// /// /// - public global::GitHub.SearchTopicsResponse? Type6886 { get; set; } + public global::GitHub.SearchReposResponse2? Type6886 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6887 { get; set; } + public global::GitHub.SearchTopicsResponse? Type6887 { get; set; } /// /// /// - public global::GitHub.SearchUsersResponse? Type6888 { get; set; } + public global::System.Collections.Generic.IList? Type6888 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6889 { get; set; } + public global::GitHub.SearchUsersResponse? Type6889 { get; set; } /// /// /// - public global::GitHub.SearchUsersResponse2? Type6890 { get; set; } + public global::System.Collections.Generic.IList? Type6890 { get; set; } /// /// /// - public global::GitHub.TeamsAddOrUpdateProjectPermissionsLegacyResponse? Type6891 { get; set; } + public global::GitHub.SearchUsersResponse2? Type6891 { get; set; } /// /// /// - public global::GitHub.UsersGetAuthenticatedResponse? Type6892 { get; set; } + public global::GitHub.TeamsAddOrUpdateProjectPermissionsLegacyResponse? Type6892 { get; set; } /// /// /// - public global::GitHub.UsersGetAuthenticatedResponseDiscriminator? Type6893 { get; set; } + public global::GitHub.UsersGetAuthenticatedResponse? Type6893 { get; set; } /// /// /// - public global::GitHub.UsersGetAuthenticatedResponseDiscriminatorUserViewType? Type6894 { get; set; } + public global::GitHub.UsersGetAuthenticatedResponseDiscriminator? Type6894 { get; set; } /// /// /// - public global::GitHub.CodespacesListForAuthenticatedUserResponse? Type6895 { get; set; } + public global::GitHub.UsersGetAuthenticatedResponseDiscriminatorUserViewType? Type6895 { get; set; } /// /// /// - public global::GitHub.CodespacesCreateForAuthenticatedUserResponse? Type6896 { get; set; } + public global::GitHub.CodespacesListForAuthenticatedUserResponse? Type6896 { get; set; } /// /// /// - public global::GitHub.CodespacesListSecretsForAuthenticatedUserResponse? Type6897 { get; set; } + public global::GitHub.CodespacesCreateForAuthenticatedUserResponse? Type6897 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6898 { get; set; } + public global::GitHub.CodespacesListSecretsForAuthenticatedUserResponse? Type6898 { get; set; } /// /// /// - public global::GitHub.CodespacesListRepositoriesForSecretForAuthenticatedUserResponse? Type6899 { get; set; } + public global::System.Collections.Generic.IList? Type6899 { get; set; } /// /// /// - public global::GitHub.CodespacesCodespaceMachinesForAuthenticatedUserResponse? Type6900 { get; set; } + public global::GitHub.CodespacesListRepositoriesForSecretForAuthenticatedUserResponse? Type6900 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6901 { get; set; } + public global::GitHub.CodespacesCodespaceMachinesForAuthenticatedUserResponse? Type6901 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6902 { get; set; } + public global::System.Collections.Generic.IList? Type6902 { get; set; } /// /// /// - public global::GitHub.AppsListInstallationsForAuthenticatedUserResponse? Type6903 { get; set; } + public global::System.Collections.Generic.IList? Type6903 { get; set; } /// /// /// - public global::GitHub.AppsListInstallationReposForAuthenticatedUserResponse? Type6904 { get; set; } + public global::GitHub.AppsListInstallationsForAuthenticatedUserResponse? Type6904 { get; set; } /// /// /// - public global::GitHub.AnyOf? Type6905 { get; set; } + public global::GitHub.AppsListInstallationReposForAuthenticatedUserResponse? Type6905 { get; set; } /// /// /// - public global::GitHub.InteractionsGetRestrictionsForAuthenticatedUserResponse2? Type6906 { get; set; } + public global::GitHub.AnyOf? Type6906 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6907 { get; set; } + public global::GitHub.InteractionsGetRestrictionsForAuthenticatedUserResponse2? Type6907 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6908 { get; set; } + public global::System.Collections.Generic.IList? Type6908 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6909 { get; set; } + public global::System.Collections.Generic.IList? Type6909 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6910 { get; set; } + public global::System.Collections.Generic.IList? Type6910 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6911 { get; set; } + public global::System.Collections.Generic.IList? Type6911 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6912 { get; set; } + public global::System.Collections.Generic.IList? Type6912 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6913 { get; set; } + public global::System.Collections.Generic.IList? Type6913 { get; set; } /// /// /// - public global::GitHub.UsersGetByIdResponse? Type6914 { get; set; } + public global::System.Collections.Generic.IList? Type6914 { get; set; } /// /// /// - public global::GitHub.UsersGetByIdResponseDiscriminator? Type6915 { get; set; } + public global::GitHub.UsersGetByIdResponse? Type6915 { get; set; } /// /// /// - public global::GitHub.UsersGetByIdResponseDiscriminatorUserViewType? Type6916 { get; set; } + public global::GitHub.UsersGetByIdResponseDiscriminator? Type6916 { get; set; } /// /// /// - public global::GitHub.UsersGetByUsernameResponse? Type6917 { get; set; } + public global::GitHub.UsersGetByIdResponseDiscriminatorUserViewType? Type6917 { get; set; } /// /// /// - public global::GitHub.UsersGetByUsernameResponseDiscriminator? Type6918 { get; set; } + public global::GitHub.UsersGetByUsernameResponse? Type6918 { get; set; } /// /// /// - public global::GitHub.UsersGetByUsernameResponseDiscriminatorUserViewType? Type6919 { get; set; } + public global::GitHub.UsersGetByUsernameResponseDiscriminator? Type6919 { get; set; } /// /// /// - public global::GitHub.UsersListAttestationsBulkResponse? Type6920 { get; set; } + public global::GitHub.UsersGetByUsernameResponseDiscriminatorUserViewType? Type6920 { get; set; } /// /// /// - public global::System.Collections.Generic.Dictionary?>? Type6921 { get; set; } + public global::GitHub.UsersListAttestationsBulkResponse? Type6921 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6922 { get; set; } + public global::System.Collections.Generic.Dictionary?>? Type6922 { get; set; } /// /// /// - public global::GitHub.UsersListAttestationsBulkResponseAttestationsSubjectDigest? Type6923 { get; set; } + public global::System.Collections.Generic.IList? Type6923 { get; set; } /// /// /// - public global::GitHub.UsersListAttestationsBulkResponseAttestationsSubjectDigestBundle? Type6924 { get; set; } + public global::GitHub.UsersListAttestationsBulkResponseAttestationsSubjectDigest? Type6924 { get; set; } /// /// /// - public global::GitHub.UsersListAttestationsBulkResponsePageInfo? Type6925 { get; set; } + public global::GitHub.UsersListAttestationsBulkResponseAttestationsSubjectDigestBundle? Type6925 { get; set; } /// /// /// - public global::GitHub.UsersListAttestationsResponse? Type6926 { get; set; } + public global::GitHub.UsersListAttestationsBulkResponsePageInfo? Type6926 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6927 { get; set; } + public global::GitHub.UsersListAttestationsResponse? Type6927 { get; set; } /// /// /// - public global::GitHub.UsersListAttestationsResponseAttestation? Type6928 { get; set; } + public global::System.Collections.Generic.IList? Type6928 { get; set; } /// /// /// - public global::GitHub.UsersListAttestationsResponseAttestationBundle? Type6929 { get; set; } + public global::GitHub.UsersListAttestationsResponseAttestation? Type6929 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6930 { get; set; } + public global::GitHub.UsersListAttestationsResponseAttestationBundle? Type6930 { get; set; } /// /// /// - public global::GitHub.BillingGetGithubBillingUsageReportUserResponse? Type6931 { get; set; } + public global::System.Collections.Generic.IList? Type6931 { get; set; } /// /// /// - public global::GitHub.AnyOf, global::System.Collections.Generic.IList>? Type6932 { get; set; } + public global::GitHub.BillingGetGithubBillingUsageReportUserResponse? Type6932 { get; set; } /// /// /// - public global::System.Collections.Generic.IList? Type6933 { get; set; } + public global::GitHub.AnyOf, global::System.Collections.Generic.IList>? Type6933 { get; set; } + /// + /// + /// + public global::System.Collections.Generic.IList? Type6934 { get; set; } } } \ No newline at end of file diff --git a/src/libs/GitHub/Generated/GitHub.Models.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest.Json.g.cs b/src/libs/GitHub/Generated/GitHub.Models.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest.Json.g.cs similarity index 79% rename from src/libs/GitHub/Generated/GitHub.Models.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest.Json.g.cs rename to src/libs/GitHub/Generated/GitHub.Models.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest.Json.g.cs index 3ffe8383a..8557e7276 100644 --- a/src/libs/GitHub/Generated/GitHub.Models.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest.Json.g.cs +++ b/src/libs/GitHub/Generated/GitHub.Models.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest.Json.g.cs @@ -2,7 +2,7 @@ namespace GitHub { - public sealed partial class OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest + public sealed partial class OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest { /// /// Serializes the current instance to a JSON string using the provided JsonSerializerContext. @@ -34,14 +34,14 @@ public string ToJson( /// /// Deserializes a JSON string using the provided JsonSerializerContext. /// - public static global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest? FromJson( + public static global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest? FromJson( string json, global::System.Text.Json.Serialization.JsonSerializerContext jsonSerializerContext) { return global::System.Text.Json.JsonSerializer.Deserialize( json, - typeof(global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest), - jsonSerializerContext) as global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest; + typeof(global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest), + jsonSerializerContext) as global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest; } /// @@ -51,11 +51,11 @@ 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::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest? FromJson( + public static global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest? FromJson( string json, global::System.Text.Json.JsonSerializerOptions? jsonSerializerOptions = null) { - return global::System.Text.Json.JsonSerializer.Deserialize( + return global::System.Text.Json.JsonSerializer.Deserialize( json, jsonSerializerOptions); } @@ -63,14 +63,14 @@ 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::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest), - jsonSerializerContext).ConfigureAwait(false)) as global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest; + typeof(global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest), + jsonSerializerContext).ConfigureAwait(false)) as global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest; } /// @@ -80,11 +80,11 @@ 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) { - return global::System.Text.Json.JsonSerializer.DeserializeAsync( + return global::System.Text.Json.JsonSerializer.DeserializeAsync( jsonStream, jsonSerializerOptions); } diff --git a/src/libs/GitHub/Generated/GitHub.Models.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest.g.cs b/src/libs/GitHub/Generated/GitHub.Models.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest.g.cs similarity index 80% rename from src/libs/GitHub/Generated/GitHub.Models.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest.g.cs rename to src/libs/GitHub/Generated/GitHub.Models.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest.g.cs index 23d0f4ea4..ec558308f 100644 --- a/src/libs/GitHub/Generated/GitHub.Models.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest.g.cs +++ b/src/libs/GitHub/Generated/GitHub.Models.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest.g.cs @@ -6,7 +6,7 @@ namespace GitHub /// /// /// - public sealed partial class OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest + public sealed partial class OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest { /// /// The names of repositories that the custom property values will be applied to. @@ -29,7 +29,7 @@ public sealed partial class OrgsCreateOrUpdateCustomPropertiesValuesForReposRequ 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. /// /// /// The names of repositories that the custom property values will be applied to. @@ -40,7 +40,7 @@ public sealed partial class OrgsCreateOrUpdateCustomPropertiesValuesForReposRequ #if NET7_0_OR_GREATER [global::System.Diagnostics.CodeAnalysis.SetsRequiredMembers] #endif - public OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest( + public OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest( global::System.Collections.Generic.IList repositoryNames, global::System.Collections.Generic.IList properties) { @@ -49,9 +49,9 @@ public OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest( } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - public OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest() + public OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest() { } } diff --git a/src/libs/GitHub/Generated/GitHub.Models.SearchIssuesAndPullRequestsSearchType.g.cs b/src/libs/GitHub/Generated/GitHub.Models.SearchIssuesAndPullRequestsSearchType.g.cs new file mode 100644 index 000000000..f11af4979 --- /dev/null +++ b/src/libs/GitHub/Generated/GitHub.Models.SearchIssuesAndPullRequestsSearchType.g.cs @@ -0,0 +1,45 @@ + +#nullable enable + +namespace GitHub +{ + /// + /// + /// + public enum SearchIssuesAndPullRequestsSearchType + { + /// + /// + /// + Semantic, + } + + /// + /// Enum extensions to do fast conversions without the reflection. + /// + public static class SearchIssuesAndPullRequestsSearchTypeExtensions + { + /// + /// Converts an enum to a string. + /// + public static string ToValueString(this SearchIssuesAndPullRequestsSearchType value) + { + return value switch + { + SearchIssuesAndPullRequestsSearchType.Semantic => "semantic", + _ => throw new global::System.ArgumentOutOfRangeException(nameof(value), value, null), + }; + } + /// + /// Converts an string to a enum. + /// + public static SearchIssuesAndPullRequestsSearchType? ToEnum(string value) + { + return value switch + { + "semantic" => SearchIssuesAndPullRequestsSearchType.Semantic, + _ => null, + }; + } + } +} \ No newline at end of file diff --git a/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCreateOrUpdateCustomPropertiesValuesForRepos.g.cs b/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValues.g.cs similarity index 90% rename from src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCreateOrUpdateCustomPropertiesValuesForRepos.g.cs rename to src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValues.g.cs index a9c0d9e2d..72342f332 100644 --- a/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCreateOrUpdateCustomPropertiesValuesForRepos.g.cs +++ b/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValues.g.cs @@ -5,16 +5,16 @@ namespace GitHub { public partial class OrgsClient { - partial void PrepareOrgsCreateOrUpdateCustomPropertiesValuesForReposArguments( + partial void PrepareOrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesArguments( global::System.Net.Http.HttpClient httpClient, ref string org, - global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest request); - partial void PrepareOrgsCreateOrUpdateCustomPropertiesValuesForReposRequest( + global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest request); + partial void PrepareOrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string org, - global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest request); - partial void ProcessOrgsCreateOrUpdateCustomPropertiesValuesForReposResponse( + global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest request); + partial void ProcessOrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); @@ -32,16 +32,16 @@ partial void ProcessOrgsCreateOrUpdateCustomPropertiesValuesForReposResponse( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task OrgsCreateOrUpdateCustomPropertiesValuesForReposAsync( + public async global::System.Threading.Tasks.Task OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesAsync( string org, - global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest request, + global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest request, global::System.Threading.CancellationToken cancellationToken = default) { request = request ?? throw new global::System.ArgumentNullException(nameof(request)); PrepareArguments( client: HttpClient); - PrepareOrgsCreateOrUpdateCustomPropertiesValuesForReposArguments( + PrepareOrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesArguments( httpClient: HttpClient, org: ref org, request: request); @@ -67,7 +67,7 @@ partial void ProcessOrgsCreateOrUpdateCustomPropertiesValuesForReposResponse( PrepareRequest( client: HttpClient, request: __httpRequest); - PrepareOrgsCreateOrUpdateCustomPropertiesValuesForReposRequest( + PrepareOrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, org: org, @@ -81,7 +81,7 @@ partial void ProcessOrgsCreateOrUpdateCustomPropertiesValuesForReposResponse( ProcessResponse( client: HttpClient, response: __response); - ProcessOrgsCreateOrUpdateCustomPropertiesValuesForReposResponse( + ProcessOrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesResponse( httpClient: HttpClient, httpResponseMessage: __response); // Forbidden @@ -277,19 +277,19 @@ partial void ProcessOrgsCreateOrUpdateCustomPropertiesValuesForReposResponse( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task OrgsCreateOrUpdateCustomPropertiesValuesForReposAsync( + public async global::System.Threading.Tasks.Task OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesAsync( string org, global::System.Collections.Generic.IList repositoryNames, global::System.Collections.Generic.IList properties, global::System.Threading.CancellationToken cancellationToken = default) { - var __request = new global::GitHub.OrgsCreateOrUpdateCustomPropertiesValuesForReposRequest + var __request = new global::GitHub.OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesRequest { RepositoryNames = repositoryNames, Properties = properties, }; - await OrgsCreateOrUpdateCustomPropertiesValuesForReposAsync( + await OrgsCustomPropertiesForReposCreateOrUpdateOrganizationValuesAsync( org: org, request: __request, cancellationToken: cancellationToken).ConfigureAwait(false); diff --git a/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsListCustomPropertiesValuesForRepos.g.cs b/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCustomPropertiesForReposGetOrganizationValues.g.cs similarity index 93% rename from src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsListCustomPropertiesValuesForRepos.g.cs rename to src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCustomPropertiesForReposGetOrganizationValues.g.cs index ba372218a..308d72367 100644 --- a/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsListCustomPropertiesValuesForRepos.g.cs +++ b/src/libs/GitHub/Generated/GitHub.OrgsClient.OrgsCustomPropertiesForReposGetOrganizationValues.g.cs @@ -5,24 +5,24 @@ namespace GitHub { public partial class OrgsClient { - partial void PrepareOrgsListCustomPropertiesValuesForReposArguments( + partial void PrepareOrgsCustomPropertiesForReposGetOrganizationValuesArguments( global::System.Net.Http.HttpClient httpClient, ref string org, ref int? perPage, ref int? page, ref string? repositoryQuery); - partial void PrepareOrgsListCustomPropertiesValuesForReposRequest( + partial void PrepareOrgsCustomPropertiesForReposGetOrganizationValuesRequest( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpRequestMessage httpRequestMessage, string org, int? perPage, int? page, string? repositoryQuery); - partial void ProcessOrgsListCustomPropertiesValuesForReposResponse( + partial void ProcessOrgsCustomPropertiesForReposGetOrganizationValuesResponse( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage); - partial void ProcessOrgsListCustomPropertiesValuesForReposResponseContent( + partial void ProcessOrgsCustomPropertiesForReposGetOrganizationValuesResponseContent( global::System.Net.Http.HttpClient httpClient, global::System.Net.Http.HttpResponseMessage httpResponseMessage, ref string content); @@ -42,7 +42,7 @@ partial void ProcessOrgsListCustomPropertiesValuesForReposResponseContent( /// /// The token to cancel the operation with /// - public async global::System.Threading.Tasks.Task> OrgsListCustomPropertiesValuesForReposAsync( + public async global::System.Threading.Tasks.Task> OrgsCustomPropertiesForReposGetOrganizationValuesAsync( string org, int? perPage = default, int? page = default, @@ -51,7 +51,7 @@ partial void ProcessOrgsListCustomPropertiesValuesForReposResponseContent( { PrepareArguments( client: HttpClient); - PrepareOrgsListCustomPropertiesValuesForReposArguments( + PrepareOrgsCustomPropertiesForReposGetOrganizationValuesArguments( httpClient: HttpClient, org: ref org, perPage: ref perPage, @@ -78,7 +78,7 @@ partial void ProcessOrgsListCustomPropertiesValuesForReposResponseContent( PrepareRequest( client: HttpClient, request: __httpRequest); - PrepareOrgsListCustomPropertiesValuesForReposRequest( + PrepareOrgsCustomPropertiesForReposGetOrganizationValuesRequest( httpClient: HttpClient, httpRequestMessage: __httpRequest, org: org, @@ -94,7 +94,7 @@ partial void ProcessOrgsListCustomPropertiesValuesForReposResponseContent( ProcessResponse( client: HttpClient, response: __response); - ProcessOrgsListCustomPropertiesValuesForReposResponse( + ProcessOrgsCustomPropertiesForReposGetOrganizationValuesResponse( httpClient: HttpClient, httpResponseMessage: __response); // Forbidden @@ -184,7 +184,7 @@ partial void ProcessOrgsListCustomPropertiesValuesForReposResponseContent( client: HttpClient, response: __response, content: ref __content); - ProcessOrgsListCustomPropertiesValuesForReposResponseContent( + ProcessOrgsCustomPropertiesForReposGetOrganizationValuesResponseContent( httpClient: HttpClient, httpResponseMessage: __response, content: ref __content); diff --git a/src/libs/GitHub/openapi.yaml b/src/libs/GitHub/openapi.yaml index 7381fa8a1..6b85811b9 100644 --- a/src/libs/GitHub/openapi.yaml +++ b/src/libs/GitHub/openapi.yaml @@ -17111,7 +17111,7 @@ paths: Organization members can read these properties. tags: - orgs - operationId: orgs/list-custom-properties-values-for-repos + operationId: orgs/custom-properties-for-repos-get-organization-values externalDocs: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#list-custom-property-values-for-organization-repositories @@ -17170,7 +17170,7 @@ paths: - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_values_editor` in the organization. tags: - orgs - operationId: orgs/create-or-update-custom-properties-values-for-repos + operationId: orgs/custom-properties-for-repos-create-or-update-organization-values externalDocs: description: API method documentation url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-custom-property-values-for-organization-repositories @@ -46073,6 +46073,7 @@ paths: - "$ref": "#/components/parameters/per-page" - "$ref": "#/components/parameters/page" - "$ref": "#/components/parameters/issues-advanced-search" + - "$ref": "#/components/parameters/search-type" responses: '200': description: Response @@ -234385,6 +234386,16 @@ components: required: false schema: type: string + search-type: + name: search_type + description: The type of search to perform. Set to `semantic` to perform a semantic + search. + in: query + required: false + schema: + type: string + enum: + - semantic team-id: name: team_id description: The unique identifier of the team.