using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class PopBeanSendBeanRequest : JdRequestBase { public string requestId {get; set;} public Nullable beanNum {get; set;} public Nullable accountId {get; set;} public string accountCode {get; set;} public Nullable sendWay {get; set;} public string sendCode {get; set;} public Nullable accountType {get; set;} public string context {get; set;} public Nullable 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 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 ); } } }