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.
61 lines
4.8 KiB
61 lines
4.8 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class DataVenderPackDMPSynchronizeRequest : JdRequestBase<DataVenderPackDMPSynchronizeResponse>
|
|
{
|
|
public Nullable<int>
|
|
dmpChannelType
|
|
{get; set;}
|
|
|
|
public string
|
|
mktActivityId
|
|
{get; set;}
|
|
|
|
public string
|
|
taskInstId
|
|
{get; set;}
|
|
|
|
public string
|
|
mktActivityInstId
|
|
{get; set;}
|
|
|
|
public string
|
|
taskId
|
|
{get; set;}
|
|
|
|
public string
|
|
strategyInstId
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.data.vender.pack.DMP.synchronize";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("dmp_channel_type", this. dmpChannelType
|
|
);
|
|
parameters.Add("mkt_activity_id", this. mktActivityId
|
|
);
|
|
parameters.Add("task_inst_id", this. taskInstId
|
|
);
|
|
parameters.Add("mkt_activity_inst_id", this. mktActivityInstId
|
|
);
|
|
parameters.Add("task_id", this. taskId
|
|
);
|
|
parameters.Add("strategy_inst_id", this. strategyInstId
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|