NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppAppcontentItem...

25 lines
645 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>
/// AlipayOpenAppAppcontentItemDeleteModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppAppcontentItemDeleteModel : AopObject
{
/// <summary>
/// 业务唯一ID和商品ID任一必填一个
/// </summary>
[XmlElement("biz_unique_id")]
public string BizUniqueId { get; set; }
/// <summary>
/// 商品ID和业务唯一ID任一必填一个
/// </summary>
[XmlElement("item_id")]
public string ItemId { get; set; }
}
}