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

43 lines
1.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;
namespace Aop.Api.Domain
{
/// <summary>
/// AntMerchantExpandItemSecurityQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandItemSecurityQueryModel : AopObject
{
/// <summary>
/// 前台类目ID
/// </summary>
[XmlElement("front_category_id")]
public string FrontCategoryId { get; set; }
/// <summary>
/// 场景码(具体值请参见产品文档)
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 商品状态EFFECT有效、INVALID无效
/// </summary>
[XmlElement("status")]
public string Status { 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; }
}
}