From 403d733cbee447fbe4a299d69542d6cc10de1aad Mon Sep 17 00:00:00 2001 From: Andy Visser Date: Mon, 9 Sep 2024 21:22:09 -0400 Subject: [PATCH] fix: add FundingSource & ParcelGuard as valid options for InsuranceProvider.cs --- .../Models/Dto/Common/Enums/InsuranceProvider.cs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs b/ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs index 090bb79d..5212e703 100644 --- a/ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs +++ b/ShipEngineSDK/Models/Dto/Common/Enums/InsuranceProvider.cs @@ -29,6 +29,18 @@ public enum InsuranceProvider /// The package is insured by a third-party insurance service, outside of ShipEngine. /// [EnumMember(Value = "third_party")] - ThirdParty + ThirdParty, + + /// + /// 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. + /// + [EnumMember(Value = "funding_source")] + FundingSource, + + /// + /// 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. + /// + [EnumMember(Value = "parcelguard")] + ParcelGuard } } \ No newline at end of file