Skip to content

Commit be717b6

Browse files
committed
Add none to enum
1 parent e36ea37 commit be717b6

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

src/NoFrixion.MoneyMoov/Enums/PayeeVerificationStatusEnum.cs

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,28 @@ namespace NoFrixion.MoneyMoov.Enums;
22

33
public enum PayeeVerificationStatusEnum
44
{
5+
/// <summary>
6+
/// Indicates that no payee verification status is set.
7+
/// </summary>
8+
None = 0,
9+
510
/// <summary>
611
/// Indicates that payee verification is not required for this payee.
712
/// </summary>
8-
NotRequired = 0,
13+
NotRequired = 1,
914

1015
/// <summary>
1116
/// Indicates that payee verification is pending and has not yet been completed.
1217
/// </summary>
13-
Pending = 1,
18+
Pending = 2,
1419

1520
/// <summary>
1621
/// Indicates that payee verification has been successfully completed.
1722
/// </summary>
18-
Completed = 2,
23+
Completed = 3,
1924

2025
/// <summary>
2126
/// Indicates that payee verification failed.
2227
/// </summary>
23-
Failed = 3
28+
Failed = 4
2429
}

0 commit comments

Comments
 (0)