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