Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AntMerchantExpandIndirectAttachmentUploadModel.cs

32 lines
795 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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; }
}
}