using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayEcoSignflowsUrlQueryResponse. /// public class AlipayEcoSignflowsUrlQueryResponse : AopResponse { /// /// 预览短链地址(30天有效) /// [XmlElement("preview_short_url")] public string PreviewShortUrl { get; set; } /// /// 预览长链地址(永久有效) /// [XmlElement("preview_url")] public string PreviewUrl { get; set; } /// /// 签署短链地址(30天有效) /// [XmlElement("sign_short_url")] public string SignShortUrl { get; set; } /// /// 签署长链地址(永久有效) /// [XmlElement("sign_url")] public string SignUrl { get; set; } } }