32 lines
795 B
C#
32 lines
795 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AntMerchantExpandIndirectAttachmentUploadModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AntMerchantExpandIndirectAttachmentUploadModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 商户附件信息
|
|
/// </summary>
|
|
[JsonProperty("attachment_info")]
|
|
|
|
public List<AttachmentInfo> AttachmentInfo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备注信息
|
|
/// </summary>
|
|
[JsonProperty("memo")]
|
|
public string Memo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 商户在支付宝入驻成功后,生成的支付宝内全局唯一的商户编号
|
|
/// </summary>
|
|
[JsonProperty("sub_merchant_id")]
|
|
public string SubMerchantId { get; set; }
|
|
}
|
|
} |