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.
86 lines
4.8 KiB
86 lines
4.8 KiB
3 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using Jd.Api.Response;
|
||
|
using Jd.Api.Util;
|
||
|
namespace Jd.Api.Request
|
||
|
{
|
||
|
public class PromoTokenTokenuserAddRequest : JdRequestBase<PromoTokenTokenuserAddResponse>
|
||
|
{
|
||
|
public string
|
||
|
tokenId
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
userPin
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<DateTime>
|
||
|
timeStart
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<DateTime>
|
||
|
timeEnd
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
openIdBuyer
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
xidBuyer
|
||
|
{get; set;}
|
||
|
|
||
|
public Nullable<bool>
|
||
|
existUpdate
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
secretKey
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
appCode
|
||
|
{get; set;}
|
||
|
|
||
|
public string
|
||
|
authKey
|
||
|
{get; set;}
|
||
|
|
||
|
public override string ApiName
|
||
|
{
|
||
|
get{return "jingdong.promo.token.tokenuser.add";}
|
||
|
}
|
||
|
protected override void PrepareParam(IDictionary<String, Object> parameters)
|
||
|
{
|
||
|
parameters.Add("tokenId", this. tokenId
|
||
|
);
|
||
|
parameters.Add("userPin", this. userPin
|
||
|
);
|
||
|
parameters.Add("timeStart", this. timeStart
|
||
|
);
|
||
|
parameters.Add("timeEnd", this. timeEnd
|
||
|
);
|
||
|
parameters.Add("open_id_buyer", this. openIdBuyer
|
||
|
);
|
||
|
parameters.Add("xid_buyer", this. xidBuyer
|
||
|
);
|
||
|
parameters.Add("existUpdate", this. existUpdate
|
||
|
);
|
||
|
parameters.Add("secretKey", this. secretKey
|
||
|
);
|
||
|
parameters.Add("appCode", this. appCode
|
||
|
);
|
||
|
parameters.Add("authKey", this. authKey
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|