using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class CrmGatewayDownclientJdSyncRequest : JdRequestBase { public string birthday {get; set;} public Nullable gender {get; set;} public string city {get; set;} public string cardNo {get; set;} public string version {get; set;} public string phoneNo {get; set;} public Nullable customerLevel {get; set;} public string extend {get; set;} public string province {get; set;} public string street {get; set;} public string appId {get; set;} public string openId {get; set;} public string appKey {get; set;} public string xId {get; set;} public override string ApiName { get{return "jingdong.crm.gateway.downclient.jdSync";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("birthday", this. birthday ); parameters.Add("gender", this. gender ); parameters.Add("city", this. city ); parameters.Add("cardNo", this. cardNo ); parameters.Add("version", this. version ); parameters.Add("phoneNo", this. phoneNo ); parameters.Add("customerLevel", this. customerLevel ); parameters.Add("extend", this. extend ); parameters.Add("province", this. province ); parameters.Add("street", this. street ); parameters.Add("appId", this. appId ); parameters.Add("openId", this. openId ); parameters.Add("appKey", this. appKey ); parameters.Add("xId", this. xId ); } } }