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.
67 lines
5.3 KiB
67 lines
5.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class DataVenderStrategyInstanceCreateRequest : JdRequestBase<DataVenderStrategyInstanceCreateResponse>
|
|
{
|
|
public string
|
|
mktActivityId
|
|
{get; set;}
|
|
|
|
public string
|
|
strategyId
|
|
{get; set;}
|
|
|
|
public string
|
|
taskInstId
|
|
{get; set;}
|
|
|
|
public string
|
|
mktActivityInstId
|
|
{get; set;}
|
|
|
|
public string
|
|
taskId
|
|
{get; set;}
|
|
|
|
public string
|
|
strategyParam
|
|
{get; set;}
|
|
|
|
public string
|
|
instancePackType
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.data.vender.strategy.instance.create";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("mkt_activity_id", this. mktActivityId
|
|
);
|
|
parameters.Add("strategy_id", this. strategyId
|
|
);
|
|
parameters.Add("task_inst_id", this. taskInstId
|
|
);
|
|
parameters.Add("mkt_activity_inst_id", this. mktActivityInstId
|
|
);
|
|
parameters.Add("task_id", this. taskId
|
|
);
|
|
parameters.Add("strategy_param", this. strategyParam
|
|
);
|
|
parameters.Add("instance_pack_type", this. instancePackType
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|