@@ -4156,6 +4156,7 @@ class RepositoryRulesetPropLinks(GitHubRestModel):
4156
4156
self_: Missing[RepositoryRulesetPropLinksPropSelf] = Field(
4157
4157
default=UNSET, alias="self"
4158
4158
)
4159
+ html: Missing[RepositoryRulesetPropLinksPropHtml] = Field(default=UNSET)
4159
4160
4160
4161
4161
4162
class RepositoryRulesetPropLinksPropSelf(GitHubRestModel):
@@ -4164,6 +4165,12 @@ class RepositoryRulesetPropLinksPropSelf(GitHubRestModel):
4164
4165
href: Missing[str] = Field(description="The URL of the ruleset", default=UNSET)
4165
4166
4166
4167
4168
+ class RepositoryRulesetPropLinksPropHtml(GitHubRestModel):
4169
+ """RepositoryRulesetPropLinksPropHtml"""
4170
+
4171
+ href: Missing[str] = Field(description="The html URL of the ruleset", default=UNSET)
4172
+
4173
+
4167
4174
class ActionsBillingUsage(GitHubRestModel):
4168
4175
"""ActionsBillingUsage"""
4169
4176
@@ -18851,6 +18858,7 @@ class UserSshSigningKeysPostBody(GitHubRestModel):
18851
18858
RepositoryRuleset.update_forward_refs()
18852
18859
RepositoryRulesetPropLinks.update_forward_refs()
18853
18860
RepositoryRulesetPropLinksPropSelf.update_forward_refs()
18861
+ RepositoryRulesetPropLinksPropHtml.update_forward_refs()
18854
18862
ActionsBillingUsage.update_forward_refs()
18855
18863
ActionsBillingUsagePropMinutesUsedBreakdown.update_forward_refs()
18856
18864
PackagesBillingUsage.update_forward_refs()
@@ -19859,6 +19867,7 @@ class UserSshSigningKeysPostBody(GitHubRestModel):
19859
19867
"RepositoryRuleset",
19860
19868
"RepositoryRulesetPropLinks",
19861
19869
"RepositoryRulesetPropLinksPropSelf",
19870
+ "RepositoryRulesetPropLinksPropHtml",
19862
19871
"ActionsBillingUsage",
19863
19872
"ActionsBillingUsagePropMinutesUsedBreakdown",
19864
19873
"PackagesBillingUsage",
0 commit comments