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
4.2 KiB
55 lines
4.2 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class DataVenderStrategyInstBindRequest : JdRequestBase<DataVenderStrategyInstBindResponse>
|
|
{
|
|
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.strategy.inst.bind";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
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
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|