using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// FileSignature Data Structure. /// [Serializable] public class FileSignature : AopObject { /// /// 签约主体证件号,关联principal对象 /// [JsonProperty("cert_no")] public string CertNo { get; set; } /// /// 图章id/图章模板id /// [JsonProperty("seal_id")] public string SealId { get; set; } /// /// 签章位置描述 /// [JsonProperty("seal_position")] public SealPosition SealPosition { get; set; } /// /// 电子图章类型 1 : 图章模板自动合成 2 : 托管图章编号 /// [JsonProperty("seal_type")] public long SealType { get; set; } /// /// 签约原因描述,可展示在PDF签名区 /// [JsonProperty("sign_reason")] public string SignReason { get; set; } /// /// 电子签章类型 1:仅数字证书文档签名 2:仅图章 3:数字证书文档签名,加盖图章 /// [JsonProperty("signature_type")] public long SignatureType { get; set; } } }