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

78 lines
2.3 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>
/// AntMerchantExpandItemSecurityCreateModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandItemSecurityCreateModel : 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>
/// 素材列表最多3个
/// </summary>
[XmlArray("material_list")]
[XmlArrayItem("material_create_info")]
public List<MaterialCreateInfo> 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>
/// 场景码(具体值请参见产品文档)
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 商品SKU列表至少1个最多20个
/// </summary>
[XmlArray("sku_list")]
[XmlArrayItem("sku_create_info")]
public List<SkuCreateInfo> SkuList { get; set; }
/// <summary>
/// 商品归属主体ID 例商品归属主体类型为店铺则商品归属主体ID为店铺ID
/// </summary>
[XmlElement("target_id")]
public string TargetId { get; set; }
/// <summary>
/// 商品归属主体类型: 5店铺
/// </summary>
[XmlElement("target_type")]
public string TargetType { get; set; }
/// <summary>
/// 商品类型STANDARD_GOODS标品、NON_STANDARD_GOODS非标品
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}