You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/FishyFlip/Lexicon/App/Bsky/Actor/StatusView.g.cs
+33-1Lines changed: 33 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,8 @@ public partial class StatusView : ATObject, ICBOREncodable<StatusView>, IJsonEnc
13
13
/// <summary>
14
14
/// Initializes a new instance of the <see cref="StatusView"/> class.
15
15
/// </summary>
16
+
/// <param name="uri"></param>
17
+
/// <param name="cid"></param>
16
18
/// <param name="status">The status for the account.
17
19
/// <br/> Known Values: <br/>
18
20
/// live - Advertises an account as currently offering live content. <br/>
@@ -24,13 +26,17 @@ public partial class StatusView : ATObject, ICBOREncodable<StatusView>, IJsonEnc
24
26
/// </param>
25
27
/// <param name="expiresAt">The date when this status will expire. The application might choose to no longer return the status after expiration.</param>
26
28
/// <param name="isActive">True if the status is not expired, false if it is expired. Only present if expiration was set.</param>
Copy file name to clipboardExpand all lines: src/FishyFlip/Lexicon/App/Bsky/Ageassurance/ConfigRegion.g.cs
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,7 @@ public partial class ConfigRegion : ATObject, ICBOREncodable<ConfigRegion>, IJso
18
18
/// </summary>
19
19
/// <param name="countryCode">The ISO 3166-1 alpha-2 country code this configuration applies to.</param>
20
20
/// <param name="regionCode">The ISO 3166-2 region code this configuration applies to. If omitted, the configuration applies to the entire country.</param>
21
+
/// <param name="minAccessAge">The minimum age (as a whole integer) required to use Bluesky in this region.</param>
21
22
/// <param name="rules">The ordered list of Age Assurance rules that apply to this region. Rules should be applied in order, and the first matching rule determines the access level granted. The rules array should always include a default rule as the last item.
/// <br/> The minimum age (as a whole integer) required to use Bluesky in this region.
82
+
/// </summary>
83
+
[JsonPropertyName("minAccessAge")]
84
+
[JsonRequired]
85
+
publiclongMinAccessAge{get;set;}
86
+
76
87
/// <summary>
77
88
/// Gets or sets the rules.
78
89
/// <br/> The ordered list of Age Assurance rules that apply to this region. Rules should be applied in order, and the first matching rule determines the access level granted. The rules array should always include a default rule as the last item.
0 commit comments