NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayEcoDocTemplateCreateR...

24 lines
718 B
C#
Raw Permalink 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>
/// AlipayEcoDocTemplateCreateResponse.
/// </summary>
public class AlipayEcoDocTemplateCreateResponse : AopResponse
{
/// <summary>
/// 模板id请记录模板IDtemplateId后续发起合同签署需要使用到
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
/// <summary>
/// 文件直传地址需要用此上传地址使用PUT方式上传文件只有文件上传后模板才可用
/// </summary>
[XmlElement("upload_url")]
public string UploadUrl { get; set; }
}
}