using BBWY.JDSDK.Response; using Jd.Api; using Jd.Api.Response; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Text; namespace Jd.Api.Request { public class WareWriteUpdateWareSaleAttrvalueAliasRequest : JdRequestBase { public override string ApiName => "jingdong.ware.write.updateWareSaleAttrvalueAlias"; public Nullable wareId { get; set; } public IList props { get; set; } protected override void PrepareParam(IDictionary paramters) { paramters.Add("wareId", wareId); paramters.Add("props", props); } } public class WareWriteUpdateWareSaleAttrvalueAliasRequestItem { public string attrId { get; set; } public IList attrValues { get; set; } public IList attrValueAlias { get; set; } [JsonProperty("@type")] public string type { get; set; } = "com.jd.pop.ware.ic.api.domain.Prop"; } }