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.
73 lines
3.3 KiB
73 lines
3.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using Jd.Api.Response;
|
|
using Jd.Api.Util;
|
|
namespace Jd.Api.Request
|
|
{
|
|
public class IsvAddisvlogRequest : JdRequestBase<IsvAddisvlogResponse>
|
|
{
|
|
public string
|
|
account
|
|
{get; set;}
|
|
|
|
public string
|
|
clientIp
|
|
{get; set;}
|
|
|
|
public string
|
|
operationTime
|
|
{get; set;}
|
|
|
|
public string
|
|
operationContent
|
|
{get; set;}
|
|
|
|
public string
|
|
useIsvAppkey
|
|
{get; set;}
|
|
|
|
public string
|
|
reqjosUrl
|
|
{get; set;}
|
|
|
|
public string
|
|
touchNumber
|
|
{get; set;}
|
|
|
|
public string
|
|
touchFiles
|
|
{get; set;}
|
|
|
|
public override string ApiName
|
|
{
|
|
get{return "jingdong.isv.addisvlog";}
|
|
}
|
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
|
{
|
|
parameters.Add("account", this. account
|
|
);
|
|
parameters.Add("clientIp", this. clientIp
|
|
);
|
|
parameters.Add("operationTime", this. operationTime
|
|
);
|
|
parameters.Add("operationContent", this. operationContent
|
|
);
|
|
parameters.Add("useIsvAppkey", this. useIsvAppkey
|
|
);
|
|
parameters.Add("reqjosUrl", this. reqjosUrl
|
|
);
|
|
parameters.Add("touchNumber", this. touchNumber
|
|
);
|
|
parameters.Add("touchFiles", this. touchFiles
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|