NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsSceneSellerActivit...

31 lines
907 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>
/// AlipayInsSceneSellerActivityUnsignModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsSceneSellerActivityUnsignModel : AopObject
{
/// <summary>
/// 渠道账号对应的uid如果证据类型字段没填则必填
/// </summary>
[XmlElement("channel_account_id")]
public string ChannelAccountId { get; set; }
/// <summary>
/// 渠道账号类型,如果证据类型字段没填则必填1:支付宝账号 2:淘宝账号
/// </summary>
[XmlElement("channel_account_type")]
public string ChannelAccountType { get; set; }
/// <summary>
/// 解约的相关产品编号
/// </summary>
[XmlElement("sp_code")]
public string SpCode { get; set; }
}
}