using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayInsSceneSellerActivityUnsignModel Data Structure.
///
[Serializable]
public class AlipayInsSceneSellerActivityUnsignModel : AopObject
{
///
/// 渠道账号对应的uid,如果证据类型字段没填则必填
///
[XmlElement("channel_account_id")]
public string ChannelAccountId { get; set; }
///
/// 渠道账号类型,如果证据类型字段没填则必填1:支付宝账号 2:淘宝账号
///
[XmlElement("channel_account_type")]
public string ChannelAccountType { get; set; }
///
/// 解约的相关产品编号
///
[XmlElement("sp_code")]
public string SpCode { get; set; }
}
}