diff --git a/src/NoFrixion.MoneyMoov/Enums/MerchantTokenPermissionsEnum.cs b/src/NoFrixion.MoneyMoov/Enums/MerchantTokenPermissionsEnum.cs
index a975f4c4..d0ebc9a0 100755
--- a/src/NoFrixion.MoneyMoov/Enums/MerchantTokenPermissionsEnum.cs
+++ b/src/NoFrixion.MoneyMoov/Enums/MerchantTokenPermissionsEnum.cs
@@ -19,6 +19,13 @@ namespace NoFrixion.MoneyMoov;
[Flags]
public enum MerchantTokenPermissionsEnum
{
+ ///
+ /// Permission to deny all actions. This won't be assigned in practice but when
+ /// checking whether a permission is granted, this can be used to specify that merchant
+ /// tokens are not allowed to perform any actions.
+ ///
+ Deny = 0,
+
///
/// Permission to create a payment request
///
@@ -97,5 +104,5 @@ public enum MerchantTokenPermissionsEnum
///
/// Permission to create and submit a payout from a trusted source.
///
- TrustedSubmitPayout = 32768
+ TrustedSubmitPayout = 32768,
}
\ No newline at end of file