3 changed files with 46 additions and 14 deletions
@ -0,0 +1,24 @@ |
|||
using BBWY.JDSDK.Response; |
|||
using Jd.Api; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace BBWY.JDSDK.Request |
|||
{ |
|||
public class PopOrderQueryCouponDetaiRequest : JdRequestBase<PopOrderQueryCouponDetaiResponse> |
|||
{ |
|||
public override string ApiName => "jingdong.pop.order.queryCouponDetai"; |
|||
|
|||
public string orderId { get; set; } |
|||
|
|||
public bool? queryPromoFlag { get; set; } |
|||
|
|||
protected override void PrepareParam(IDictionary<string, object> paramters) |
|||
{ |
|||
paramters.Add("orderId", orderId); |
|||
if (queryPromoFlag != null) |
|||
paramters.Add("queryPromoFlag", queryPromoFlag); |
|||
} |
|||
} |
|||
} |
@ -0,0 +1,8 @@ |
|||
using Jd.Api; |
|||
|
|||
namespace BBWY.JDSDK.Response |
|||
{ |
|||
public class PopOrderQueryCouponDetaiResponse : JdResponse |
|||
{ |
|||
} |
|||
} |
Loading…
Reference in new issue