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.
55 lines
3.4 KiB
55 lines
3.4 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class SellerPromotionV2GetPromoLimitRequest : JdRequestBase<SellerPromotionV2GetPromoLimitResponse>
|
|
{
|
|
public string
|
|
ip
|
|
{get; set;}
|
|
|
|
public string
|
|
port
|
|
{get; set;}
|
|
|
|
public Nullable<long>
|
|
categoryId
|
|
{get; set;}
|
|
|
|
public Nullable<DateTime>
|
|
startTime
|
|
{get; set;}
|
|
|
|
public Nullable<DateTime>
|
|
endTime
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.seller.promotion.v2.getPromoLimit";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("ip", this. ip
|
|
);
|
|
parameters.Add("port", this. port
|
|
);
|
|
parameters.Add("category_id", this. categoryId
|
|
);
|
|
parameters.Add("start_time", this. startTime
|
|
);
|
|
parameters.Add("end_time", this. endTime
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|