Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/ZhimaMerchantSingleDataUploadResponse.cs

22 lines
581 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// ZhimaMerchantSingleDataUploadResponse.
/// </summary>
public class ZhimaMerchantSingleDataUploadResponse : AopResponse
{
/// <summary>
/// 公用回传参数(非必填),这个字段由商户传入,系统透传给商户。
/// </summary>
[JsonProperty("biz_ext_params")]
public string BizExtParams { get; set; }
/// <summary>
/// 每次上传都会生成一个任务号 。
/// </summary>
[JsonProperty("task_id")]
public string TaskId { get; set; }
}
}