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.
22 lines
740 B
22 lines
740 B
2 years ago
|
using BBWY.JDSDK.Response;
|
||
|
using Jd.Api;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace BBWY.JDSDK.Request
|
||
|
{
|
||
|
public class SellerDeliverySendPromiseTemplateJsfServiceQuerySendTemplateByCategoryRequest : JdRequestBase<SellerDeliverySendPromiseTemplateJsfServiceQuerySendTemplateByCategoryResponse>
|
||
|
{
|
||
|
public override string ApiName => "jingdong.seller.delivery.SendPromiseTemplateJsfService.querySendTemplateByCategory";
|
||
|
|
||
|
public int categoryId { get; set; }
|
||
|
|
||
|
public bool dzSku { get; set; }
|
||
|
|
||
|
protected override void PrepareParam(IDictionary<string, object> paramters)
|
||
|
{
|
||
|
paramters.Add("categoryId", this.categoryId);
|
||
|
paramters.Add("dzSku", this.dzSku);
|
||
|
}
|
||
|
}
|
||
|
}
|