You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
690 B
24 lines
690 B
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);
|
|
}
|
|
}
|
|
}
|
|
|