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

37 lines
1.0 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>
/// AlipayInsSceneSellerActivitySignModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsSceneSellerActivitySignModel : AopObject
{
/// <summary>
/// 关于签约的附加信息
/// </summary>
[XmlElement("biz_data")]
public string BizData { get; set; }
/// <summary>
/// 渠道账号对应的uid如果证据类型字段没填则必填
/// </summary>
[XmlElement("channel_account_id")]
public string ChannelAccountId { get; set; }
/// <summary>
/// 渠道账号类型,如果证据类型字段没填则必填1:支付宝账号 2:淘宝账号
/// </summary>
[XmlElement("channel_account_type")]
public long ChannelAccountType { get; set; }
/// <summary>
/// 标准产品编号
/// </summary>
[XmlElement("sp_code")]
public string SpCode { get; set; }
}
}