You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB
C#

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEbppPdeductSignQueryResponse.
/// </summary>
public class AlipayEbppPdeductSignQueryResponse : AopResponse
{
/// <summary>
/// 协议ID
/// </summary>
[XmlElement("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 户号
/// </summary>
[XmlElement("bill_key")]
public string BillKey { get; set; }
/// <summary>
/// 出账机构
/// </summary>
[XmlElement("charge_inst")]
public string ChargeInst { get; set; }
/// <summary>
/// 朗新协议ID
/// </summary>
[XmlElement("out_agreement_id")]
public string OutAgreementId { get; set; }
/// <summary>
/// 签约时间
/// </summary>
[XmlElement("sign_date")]
public string SignDate { get; set; }
/// <summary>
/// 用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}