NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandFrontcateg...

51 lines
1.5 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>
/// AntMerchantExpandFrontcategorySecurityCreateModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandFrontcategorySecurityCreateModel : AopObject
{
/// <summary>
/// 前台类目描述
/// </summary>
[XmlElement("description")]
public string Description { 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>
[XmlElement("scene")]
public string Scene { 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; }
}
}