接口文件

This commit is contained in:
“wanyongkang”
2024-04-10 13:55:27 +08:00
parent fff6bee06a
commit ed3b2c653e
3190 changed files with 268248 additions and 1 deletions

View File

@@ -0,0 +1,44 @@
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; }
}
}