Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/SignTaskFileResult.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

44 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// SignTaskFileResult Data Structure.
/// </summary>
[Serializable]
public class SignTaskFileResult : AopObject
{
/// <summary>
/// 业务初始化时传入的流水号
/// </summary>
[JsonProperty("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 扩展参数信息,可根据不同接入方需求定制内容
/// </summary>
[JsonProperty("biz_info")]
public string BizInfo { get; set; }
/// <summary>
/// 已签名文档列表
/// </summary>
[JsonProperty("signed_file_list")]
public List<SignedFileInfo> SignedFileList { get; set; }
/// <summary>
/// 签约结果 1FAIL | 解释:签约失败 2SUCCESS | 解释:完成 3PROCESS | 解释:签约中 4EXPIRED | 解释:任务过期
/// </summary>
[JsonProperty("status")]
public string Status { get; set; }
/// <summary>
/// 签约任务编号
/// </summary>
[JsonProperty("task_id")]
public string TaskId { get; set; }
}
}