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.
49 lines
2.7 KiB
49 lines
2.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class DataVenderSmsEffectGetRequest : JdRequestBase<DataVenderSmsEffectGetResponse>
|
|
{
|
|
public string
|
|
searchId
|
|
{get; set;}
|
|
|
|
public string
|
|
activityRecordId
|
|
{get; set;}
|
|
|
|
public string
|
|
start
|
|
{get; set;}
|
|
|
|
public string
|
|
end
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.data.vender.sms.effect.get";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("search_id", this. searchId
|
|
);
|
|
parameters.Add("activity_record_id", this. activityRecordId
|
|
);
|
|
parameters.Add("start", this. start
|
|
);
|
|
parameters.Add("end", this. end
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|