using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class OmnichannelStoreInfoUpdateRequest : JdRequestBase { public string storeId {get; set;} public string storeName {get; set;} public string storeFullAddress {get; set;} public string province {get; set;} public Nullable provinceCode {get; set;} public string city {get; set;} public Nullable cityCode {get; set;} public string county {get; set;} public Nullable countyCode {get; set;} public string town {get; set;} public Nullable townCode {get; set;} public string storeContactName {get; set;} public string storeContactPhone {get; set;} public string storeContactMail {get; set;} public Nullable coverage {get; set;} public string companyUnitCreditCode {get; set;} public Nullable longitude {get; set;} public Nullable latitude {get; set;} public Nullable isValid {get; set;} public Nullable deliveryFlag {get; set;} public Nullable pickupFlag {get; set;} public override string ApiName { get{return "jingdong.omnichannel.store.info.update";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("storeId", this. storeId ); parameters.Add("storeName", this. storeName ); parameters.Add("storeFullAddress", this. storeFullAddress ); parameters.Add("province", this. province ); parameters.Add("provinceCode", this. provinceCode ); parameters.Add("city", this. city ); parameters.Add("cityCode", this. cityCode ); parameters.Add("county", this. county ); parameters.Add("countyCode", this. countyCode ); parameters.Add("town", this. town ); parameters.Add("townCode", this. townCode ); parameters.Add("storeContactName", this. storeContactName ); parameters.Add("storeContactPhone", this. storeContactPhone ); parameters.Add("storeContactMail", this. storeContactMail ); parameters.Add("coverage", this. coverage ); parameters.Add("companyUnitCreditCode", this. companyUnitCreditCode ); parameters.Add("longitude", this. longitude ); parameters.Add("latitude", this. latitude ); parameters.Add("isValid", this. isValid ); parameters.Add("deliveryFlag", this. deliveryFlag ); parameters.Add("pickupFlag", this. pickupFlag ); } } }