Skip to content

Commit fdf9b54

Browse files
authored
Fix SubscriptionStatus after a documentation fix (discord/discord-api-docs#8388) (#365)
1 parent caca47e commit fdf9b54

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

NetCord/SubscriptionStatus.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ public enum SubscriptionStatus : byte
88
Active = 0,
99

1010
/// <summary>
11-
/// Subscription is active but will not renew.
11+
/// Subscription is inactive and not being charged.
1212
/// </summary>
13-
Ending = 1,
13+
Inactive = 1,
1414

1515
/// <summary>
16-
/// Subscription is inactive and not being charged.
16+
/// Subscription is active but will not renew.
1717
/// </summary>
18-
Inactive = 2,
18+
Ending = 2,
1919
}

0 commit comments

Comments
 (0)