NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandItemDelete...

25 lines
821 B
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>
/// AntMerchantExpandItemDeleteModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandItemDeleteModel : AopObject
{
/// <summary>
/// 外部商品IDitem_id不为空则以item_id作为删除KEY,item_id为空则以external_item_id作为删除KEY,两者不能同时为空)
/// </summary>
[XmlElement("external_item_id")]
public string ExternalItemId { get; set; }
/// <summary>
/// 商品IDitem_id不为空则以item_id作为删除KEY,item_id为空则以external_item_id作为删除KEY,两者不能同时为空)
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
}
}