You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.1 KiB
40 lines
1.1 KiB
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<WareWriteUpdateWareSaleAttrvalueAliasResponse>
|
|
{
|
|
public override string ApiName => "jingdong.ware.write.updateWareSaleAttrvalueAlias";
|
|
|
|
public Nullable<long> wareId { get; set; }
|
|
|
|
public IList<WareWriteUpdateWareSaleAttrvalueAliasRequestItem> props { get; set; }
|
|
|
|
|
|
|
|
protected override void PrepareParam(IDictionary<string, object> paramters)
|
|
{
|
|
paramters.Add("wareId", wareId);
|
|
paramters.Add("props", props);
|
|
}
|
|
}
|
|
|
|
public class WareWriteUpdateWareSaleAttrvalueAliasRequestItem
|
|
{
|
|
public string attrId { get; set; }
|
|
|
|
public IList<string> attrValues { get; set; }
|
|
|
|
public IList<string> attrValueAlias { get; set; }
|
|
|
|
|
|
[JsonProperty("@type")]
|
|
public string type { get; set; } = "com.jd.pop.ware.ic.api.domain.Prop";
|
|
}
|
|
}
|
|
|