NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandItemSecuri...

72 lines
2.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AntMerchantExpandItemSecurityModifyModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandItemSecurityModifyModel : AopObject
{
/// <summary>
/// 商品描述
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 商品所属前台类目ID列表会和商品已存在所属前台类目做差异化比较后做增删操作
/// </summary>
[XmlArray("front_category_id_list")]
[XmlArrayItem("string")]
public List<string> FrontCategoryIdList { get; set; }
/// <summary>
/// 商品ID
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
/// <summary>
/// 商品素材列表(会和商品已存在素材做差异化比较后做增删改操作)
/// </summary>
[XmlArray("material_list")]
[XmlArrayItem("material_modify_info")]
public List<MaterialModifyInfo> MaterialList { get; set; }
/// <summary>
/// 商品名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 商品属性列表(覆盖商品已存在属性)
/// </summary>
[XmlArray("property_list")]
[XmlArrayItem("item_property_info")]
public List<ItemPropertyInfo> PropertyList { get; set; }
/// <summary>
/// SKU列表会和商品已存在SKU做差异化比较后做增删改操作
/// </summary>
[XmlArray("sku_list")]
[XmlArrayItem("sku_modify_info")]
public List<SkuModifyInfo> SkuList { get; set; }
/// <summary>
/// 商品状态EFFECT有效、INVALID无效
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 商品类型STANDARD_GOODS标品、NON_STANDARD_GOODS非标品
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}