using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// SignedFileInfo Data Structure.
///
[Serializable]
public class SignedFileInfo : AopObject
{
///
/// 文档过期时间戳
///
[JsonProperty("expired_time")]
public string ExpiredTime { get; set; }
///
/// 数据名
///
[JsonProperty("file_name")]
public string FileName { get; set; }
///
/// 文件类型 pdf //pdf文档 p7 //pkcs7签名文档
///
[JsonProperty("file_type")]
public string FileType { get; set; }
///
/// 文件读取url地址
///
[JsonProperty("file_url")]
public string FileUrl { get; set; }
///
/// 文档创建时间戳
///
[JsonProperty("gmt_time")]
public string GmtTime { get; set; }
///
/// 签约数据编号,由平台生成
///
[JsonProperty("inner_data_id")]
public string InnerDataId { get; set; }
///
/// 签约数据编号,由外部系统定义,用于数据关联
///
[JsonProperty("out_data_id")]
public string OutDataId { get; set; }
///
/// 文档签名结果
///
[JsonProperty("signed_data")]
public string SignedData { get; set; }
///
/// 资源文件类型 DATA //文件原文 FILE //文件OSS索引
///
[JsonProperty("source_type")]
public string SourceType { get; set; }
}
}