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.
163 lines
8.7 KiB
163 lines
8.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class AdsIbgUniversalJosServiceSkuQueryRequest : JdRequestBase<AdsIbgUniversalJosServiceSkuQueryResponse>
|
|
{
|
|
public string
|
|
businessType
|
|
{get; set;}
|
|
|
|
public string
|
|
clickStartDay
|
|
{get; set;}
|
|
|
|
public string
|
|
clickEndDay
|
|
{get; set;}
|
|
|
|
public string
|
|
orderStartDay
|
|
{get; set;}
|
|
|
|
public string
|
|
orderEndDay
|
|
{get; set;}
|
|
|
|
public string
|
|
myself
|
|
{get; set;}
|
|
|
|
public string
|
|
orderStatus
|
|
{get; set;}
|
|
|
|
public string
|
|
province
|
|
{get; set;}
|
|
|
|
public string
|
|
areaId
|
|
{get; set;}
|
|
|
|
public string
|
|
isDaily
|
|
{get; set;}
|
|
|
|
public string
|
|
startDay
|
|
{get; set;}
|
|
|
|
public string
|
|
endDay
|
|
{get; set;}
|
|
|
|
public string
|
|
orderStatusCategory
|
|
{get; set;}
|
|
|
|
public string
|
|
clickOrOrderCaliber
|
|
{get; set;}
|
|
|
|
public string
|
|
campaignId
|
|
{get; set;}
|
|
|
|
public string
|
|
clickOrOrderDay
|
|
{get; set;}
|
|
|
|
public string
|
|
page
|
|
{get; set;}
|
|
|
|
public string
|
|
pageSize
|
|
{get; set;}
|
|
|
|
public string
|
|
filters
|
|
{get; set;}
|
|
|
|
public string
|
|
platform
|
|
{get; set;}
|
|
|
|
public string
|
|
giftFlag
|
|
{get; set;}
|
|
|
|
public string
|
|
authType
|
|
{get; set;}
|
|
|
|
public string
|
|
accessPin
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.ads.ibg.UniversalJosService.sku.query";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("businessType", this. businessType
|
|
);
|
|
parameters.Add("clickStartDay", this. clickStartDay
|
|
);
|
|
parameters.Add("clickEndDay", this. clickEndDay
|
|
);
|
|
parameters.Add("orderStartDay", this. orderStartDay
|
|
);
|
|
parameters.Add("orderEndDay", this. orderEndDay
|
|
);
|
|
parameters.Add("myself", this. myself
|
|
);
|
|
parameters.Add("orderStatus", this. orderStatus
|
|
);
|
|
parameters.Add("province", this. province
|
|
);
|
|
parameters.Add("areaId", this. areaId
|
|
);
|
|
parameters.Add("isDaily", this. isDaily
|
|
);
|
|
parameters.Add("startDay", this. startDay
|
|
);
|
|
parameters.Add("endDay", this. endDay
|
|
);
|
|
parameters.Add("orderStatusCategory", this. orderStatusCategory
|
|
);
|
|
parameters.Add("clickOrOrderCaliber", this. clickOrOrderCaliber
|
|
);
|
|
parameters.Add("campaignId", this. campaignId
|
|
);
|
|
parameters.Add("clickOrOrderDay", this. clickOrOrderDay
|
|
);
|
|
parameters.Add("page", this. page
|
|
);
|
|
parameters.Add("pageSize", this. pageSize
|
|
);
|
|
parameters.Add("filters", this. filters
|
|
);
|
|
parameters.Add("platform", this. platform
|
|
);
|
|
parameters.Add("giftFlag", this. giftFlag
|
|
);
|
|
parameters.Add("authType", this. authType
|
|
);
|
|
parameters.Add("accessPin", this. accessPin
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|