File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed
src/NoFrixion.MoneyMoov/Enums Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -2,23 +2,28 @@ namespace NoFrixion.MoneyMoov.Enums;
22
33public 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}
You can’t perform that action at this time.
0 commit comments