Skip to content

Commit

Permalink
docs: fix docs for entitlement type. todo: new routes
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Apr 24, 2024
1 parent 299cf0c commit d4eba35
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion DisCatSharp/Enums/Store/EntitlementType.cs
Original file line number Diff line number Diff line change
@@ -1,16 +1,47 @@
namespace DisCatSharp.Enums;

/// <summary>
/// Represents the test entitlement owner type.
/// Represents the entitlement type.
/// </summary>
public enum EntitlementType
{
/// <summary>
/// Entitlement was purchased by user.
/// </summary>
Purchase = 1,

/// <summary>
/// Entitlement for Discord Nitro subscription.
/// </summary>
PremiumSubscription = 2,

/// <summary>
/// Entitlement was gifted by developer.
/// </summary>
DeveloperGift = 3,

/// <summary>
/// Entitlement was purchased by a dev in application test mode.
/// </summary>
TestModePurchase = 4,

/// <summary>
/// Entitlement was granted when the SKU was free.
/// </summary>
FreePurchase = 5,

/// <summary>
/// Entitlement was gifted by another user.
/// </summary>
UserGift = 6,

/// <summary>
/// Entitlement was claimed by user for free as a Nitro Subscriber.
/// </summary>
PremiumPurchase = 7,

/// <summary>
/// Entitlement was purchased as an app subscription.
/// </summary>
ApplicationSubscription = 8
}

0 comments on commit d4eba35

Please sign in to comment.