步步为盈
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.

97 lines
5.5 KiB

using System;
using System.Collections.Generic;
using Jd.Api.Response;
using Jd.Api.Util;
namespace Jd.Api.Request
{
public class PopBeanSendBeanRequest : JdRequestBase<PopBeanSendBeanResponse>
{
public string
requestId
{get; set;}
public Nullable<long>
beanNum
{get; set;}
public Nullable<long>
accountId
{get; set;}
public string
accountCode
{get; set;}
public Nullable<int>
sendWay
{get; set;}
public string
sendCode
{get; set;}
public Nullable<int>
accountType
{get; set;}
public string
context
{get; set;}
public Nullable<long>
planId
{get; set;}
public string
rfId
{get; set;}
public string
openIdBuyer
{get; set;}
public string
xidBuyer
{get; set;}
public override string ApiName
{
get{return "jingdong.pop.bean.sendBean";}
}
protected override void PrepareParam(IDictionary<String, Object> parameters)
{
parameters.Add("requestId", this. requestId
);
parameters.Add("beanNum", this. beanNum
);
parameters.Add("accountId", this. accountId
);
parameters.Add("accountCode", this. accountCode
);
parameters.Add("sendWay", this. sendWay
);
parameters.Add("sendCode", this. sendCode
);
parameters.Add("accountType", this. accountType
);
parameters.Add("context", this. context
);
parameters.Add("planId", this. planId
);
parameters.Add("rfId", this. rfId
);
parameters.Add("open_id_buyer", this. openIdBuyer
);
parameters.Add("xid_buyer", this. xidBuyer
);
}
}
}