Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

62 lines
1.6 KiB
C#
Raw Permalink 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>
/// SignDataInfo Data Structure.
/// </summary>
[Serializable]
public class SignDataInfo : AopObject
{
/// <summary>
/// 待签约数据编号,由外部系统定义,用于数据关联
/// </summary>
[JsonProperty("data_id")]
public string DataId { get; set; }
/// <summary>
/// 待签约数据名称支持GBK编码字符
/// </summary>
[JsonProperty("data_name")]
public string DataName { get; set; }
/// <summary>
/// 代签名数据类型 'DATA' //数据原文 'FILE' //文档索引通过OSS空间交换 'TEMPLATE' //文档模板
/// </summary>
[JsonProperty("data_type")]
public string DataType { get; set; }
/// <summary>
/// 当data_type=FILE时制定文档类型。 'html' //html格式文档 'pdf' //pdf格式文档
/// </summary>
[JsonProperty("file_type")]
public string FileType { get; set; }
/// <summary>
/// OSS空间中存储的文件Id
/// </summary>
[JsonProperty("oss_file_id")]
public string OssFileId { get; set; }
/// <summary>
/// 文档预览地址信息
/// </summary>
[JsonProperty("preview_url")]
public string PreviewUrl { get; set; }
/// <summary>
/// 文档签章列表参考FileSignatrue
/// </summary>
[JsonProperty("signature_list")]
public List<FileSignature> SignatureList { get; set; }
/// <summary>
/// 文档原文内容当data_type=DATA时必传。
/// </summary>
[JsonProperty("source_data")]
public string SourceData { get; set; }
}
}