| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- using System;
- using System.Collections.Generic;
- using Top.Api.Response;
- using Top.Api.Util;
- namespace Top.Api.Request
- {
- /// <summary>
- /// TOP API: taobao.product.update
- /// </summary>
- public class ProductUpdateRequest : BaseTopRequest<ProductUpdateResponse>, ITopUploadRequest<ProductUpdateResponse>
- {
- /// <summary>
- /// 非关键属性.调用taobao.itemprops.get获取pid,调用taobao.itempropvalues.get获取vid;格式:pid:vid;pid:vid
- /// </summary>
- public string Binds { get; set; }
- /// <summary>
- /// 产品描述.最大不超过25000个字符
- /// </summary>
- public string Desc { get; set; }
- /// <summary>
- /// 产品主图.最大500K,目前仅支持GIF,JPG
- /// </summary>
- public FileItem Image { get; set; }
- /// <summary>
- /// 是否是主图
- /// </summary>
- public Nullable<bool> Major { get; set; }
- /// <summary>
- /// 产品名称.最大不超过30个字符
- /// </summary>
- public string Name { get; set; }
- /// <summary>
- /// 自定义非关键属性
- /// </summary>
- public string NativeUnkeyprops { get; set; }
- /// <summary>
- /// 外部产品ID
- /// </summary>
- public string OuterId { get; set; }
- /// <summary>
- /// 产品市场价.精确到2位小数;单位为元.如:200.07
- /// </summary>
- public string Price { get; set; }
- /// <summary>
- /// 产品ID
- /// </summary>
- public Nullable<long> ProductId { get; set; }
- /// <summary>
- /// 销售属性.调用taobao.itemprops.get获取pid,调用taobao.itempropvalues.get获取vid;格式:pid:vid;pid:vid
- /// </summary>
- public string SaleProps { get; set; }
- #region BaseTopRequest Members
- public override string GetApiName()
- {
- return "taobao.product.update";
- }
- public override IDictionary<string, string> GetParameters()
- {
- TopDictionary parameters = new TopDictionary();
- parameters.Add("binds", this.Binds);
- parameters.Add("desc", this.Desc);
- parameters.Add("major", this.Major);
- parameters.Add("name", this.Name);
- parameters.Add("native_unkeyprops", this.NativeUnkeyprops);
- parameters.Add("outer_id", this.OuterId);
- parameters.Add("price", this.Price);
- parameters.Add("product_id", this.ProductId);
- parameters.Add("sale_props", this.SaleProps);
- if (this.otherParams != null)
- {
- parameters.AddAll(this.otherParams);
- }
- return parameters;
- }
- public override void Validate()
- {
- RequestValidator.ValidateMaxLength("image", this.Image, 1048576);
- RequestValidator.ValidateRequired("product_id", this.ProductId);
- }
- #endregion
- #region ITopUploadRequest Members
- public IDictionary<string, FileItem> GetFileParameters()
- {
- IDictionary<string, FileItem> parameters = new Dictionary<string, FileItem>();
- parameters.Add("image", this.Image);
- return parameters;
- }
- #endregion
- }
- }
|