From d4f97a54f1ade5401329ba4e98769cf7123bd25f Mon Sep 17 00:00:00 2001 From: "aa.kostyukevich" Date: Tue, 10 Oct 2023 15:03:58 +0500 Subject: [PATCH] add IsPromotionalPrice, PromotionalDealNumber to CommonGoodItem --- EdiApi.Client/Types/Internal/GoodItems/CommonGoodItem.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/EdiApi.Client/Types/Internal/GoodItems/CommonGoodItem.cs b/EdiApi.Client/Types/Internal/GoodItems/CommonGoodItem.cs index dc34132..b4b7569 100644 --- a/EdiApi.Client/Types/Internal/GoodItems/CommonGoodItem.cs +++ b/EdiApi.Client/Types/Internal/GoodItems/CommonGoodItem.cs @@ -71,6 +71,10 @@ public class CommonGoodItem : GoodItemBase public string UltimateCustomerGln { get; set; } public GoodItemAdditionalInfo AdditionalInfo { get; set; } + + public bool IsPromotionalPrice { get; set; } + + public string PromotionalDealNumber { get; set; } } public class CustomDeclaration