NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandItemQueryM...

43 lines
1.2 KiB
C#
Raw 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>
/// AntMerchantExpandItemQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandItemQueryModel : AopObject
{
/// <summary>
/// 商品前台类目id: null 表示所有分类
/// </summary>
[XmlElement("front_category_id")]
public string FrontCategoryId { get; set; }
/// <summary>
/// 商品状态EFFECT、INVALID、PAUSE不填返回所有状态商品
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
/// <summary>
/// 商品归属主体id
/// </summary>
[XmlElement("target_id")]
public string TargetId { get; set; }
/// <summary>
/// 商品归属主体类型: 5: 店铺 4: 主站MID 3: 参与者 2: 角色 1: 联系人
/// </summary>
[XmlElement("target_type")]
public string TargetType { get; set; }
/// <summary>
/// 未分类类目: true 的时候 front_category_id 必须不填null
/// </summary>
[XmlElement("undefined_category")]
public bool UndefinedCategory { get; set; }
}
}