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.

56 lines
1.5 KiB
C#

9 months ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEbppPdeductSignAddResponse.
/// </summary>
public class AlipayEbppPdeductSignAddResponse : AopResponse
{
/// <summary>
/// 支付宝代扣协议ID
/// </summary>
[XmlElement("agreement_id")]
public string AgreementId { get; set; }
/// <summary>
/// 支付宝协议状态。签约成功则返回success
/// </summary>
[XmlElement("agreement_status")]
public string AgreementStatus { get; set; }
/// <summary>
/// 扩展参数,可为空
/// </summary>
[XmlElement("extend_field")]
public string ExtendField { get; set; }
/// <summary>
/// 通知方式设置。
/// </summary>
[XmlElement("notify_config")]
public string NotifyConfig { get; set; }
/// <summary>
/// 商户生成的代扣协议ID
/// </summary>
[XmlElement("out_agreement_id")]
public string OutAgreementId { get; set; }
/// <summary>
/// 支付方式设置
/// </summary>
[XmlArray("pay_config")]
[XmlArrayItem("string")]
public List<string> PayConfig { get; set; }
/// <summary>
/// 签约时间
/// </summary>
[XmlElement("sign_date")]
public string SignDate { get; set; }
}
}