using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class PopCrmGetCustomerPointsRequest : JdRequestBase { public string customerPin {get; set;} public string openIdBuyer {get; set;} public string xidBuyer {get; set;} public override string ApiName { get{return "jingdong.pop.crm.getCustomerPoints";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("customerPin", this. customerPin ); parameters.Add("open_id_buyer", this. openIdBuyer ); parameters.Add("xid_buyer", this. xidBuyer ); } } }