using System; using System.Collections.Generic; using Jd.Api.Response; using Jd.Api.Util; namespace Jd.Api.Request { public class FollowVenderReadIsFollowByPinAndVidRequest : JdRequestBase { public string pin {get; set;} public string shopId {get; set;} public string openIdBuyer {get; set;} public string xidBuyer {get; set;} public override string ApiName { get{return "jingdong.follow.vender.read.isFollowByPinAndVid";} } protected override void PrepareParam(IDictionary parameters) { parameters.Add("pin", this. pin ); parameters.Add("shopId", this. shopId ); parameters.Add("open_id_buyer", this. openIdBuyer ); parameters.Add("xid_buyer", this. xidBuyer ); } } }