-
Notifications
You must be signed in to change notification settings - Fork 11
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 #111 from avisser/add-parcelguard
fix: add FundingSource & ParcelGuard as valid options for InsuranceProvider
- Loading branch information
Showing
1 changed file
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,6 +29,18 @@ public enum InsuranceProvider | |
/// The package is insured by a third-party insurance service, outside of ShipEngine. | ||
/// </summary> | ||
[EnumMember(Value = "third_party")] | ||
ThirdParty | ||
ThirdParty, | ||
|
||
/// <summary> | ||
/// This option will assign the insurance provider available with ShipEngine Carriers to the shipment (currently ParcelGuard). The response will auto-populate the insurance_provider field with parcelguard. | ||
/// </summary> | ||
[EnumMember(Value = "funding_source")] | ||
FundingSource, | ||
Check warning on line 38 in ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs GitHub Actions / .Net 8.0 on windows-latest
Check warning on line 38 in ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs GitHub Actions / .Net 8.0 on windows-latest
|
||
|
||
/// <summary> | ||
/// This option will assign ParcelGuard as the insurance provider for the shipment. Using this value is functionally the same as using the 'funding_source' value. | ||
/// </summary> | ||
[EnumMember(Value = "parcelguard")] | ||
ParcelGuard | ||
Check warning on line 44 in ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs GitHub Actions / .Net 8.0 on windows-latest
Check warning on line 44 in ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs GitHub Actions / .Net 8.0 on windows-latest
|
||
} | ||
} |