NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayEcoSignflowsUrlQueryR...

36 lines
948 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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