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; }
///