-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #107 from ShipEngine/ENGINE-7190-funding-sources-w…
…allet-errors Added error codes for funding sources errors
- Loading branch information
Showing
8 changed files
with
50 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,18 @@ public enum ErrorType | |
/// An unknown or unexpected error occurred in our system. Or an error occurred that has not yet been assigned a specific error_type. If you receive persistent system errors, then please contact our support or check our API status page to see if there's a known issue. | ||
/// </summary>/ | ||
[EnumMember(Value = "system")] | ||
System | ||
System, | ||
|
||
/// <summary> | ||
/// General wallet error type. | ||
/// </summary>/ | ||
[EnumMember(Value = "wallet")] | ||
Wallet, | ||
Check warning on line 50 in ShipEngineSDK/Enums/ErrorType.cs GitHub Actions / .Net 8.0 on windows-latest
Check warning on line 50 in ShipEngineSDK/Enums/ErrorType.cs GitHub Actions / nuget-deploy
|
||
|
||
/// <summary> | ||
/// General funding sources error type. | ||
/// </summary>/ | ||
[EnumMember(Value = "funding_sources")] | ||
FundingSources | ||
Check warning on line 56 in ShipEngineSDK/Enums/ErrorType.cs GitHub Actions / .Net 8.0 on windows-latest
Check warning on line 56 in ShipEngineSDK/Enums/ErrorType.cs GitHub Actions / .Net 8.0 on windows-latest
Check warning on line 56 in ShipEngineSDK/Enums/ErrorType.cs GitHub Actions / nuget-deploy
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters