14 changed files with 201 additions and 102 deletions
@ -0,0 +1,24 @@ |
|||
using Jd.Api.Response; |
|||
using System.Collections.Generic; |
|||
|
|||
namespace Jd.Api.Request |
|||
{ |
|||
public class SellerPromotionDeleteSkuInPromoRequest : JdRequestBase<SellerPromotionDeleteSkuInPromoResponse> |
|||
{ |
|||
public long promoId { get; set; } |
|||
|
|||
public string skuId { get; set; } |
|||
|
|||
public SellerPromotionDeleteSkuInPromoRequest() |
|||
{ |
|||
} |
|||
|
|||
public override string ApiName => "jingdong.seller.promotion.deleteSkuInPromo"; |
|||
|
|||
protected override void PrepareParam(IDictionary<string, object> paramters) |
|||
{ |
|||
paramters.Add("promoId", promoId); |
|||
paramters.Add("skuId", skuId); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,8 @@ |
|||
using Jd.Api; |
|||
|
|||
namespace Jd.Api.Response |
|||
{ |
|||
public class SellerPromotionDeleteSkuInPromoResponse: JdResponse |
|||
{ |
|||
} |
|||
} |
Loading…
Reference in new issue