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

31 lines
915 B
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;
namespace Aop.Api.Domain
{
/// <summary>
/// AntMerchantExpandFrontcategorySecurityQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandFrontcategorySecurityQueryModel : AopObject
{
/// <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; }
}
}