NewGaoKaoApi/PaymentSDK/AliPay/Domain/SceneProdDeputyPaymentBillD...

31 lines
804 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.Domain
{
/// <summary>
/// SceneProdDeputyPaymentBillDetail Data Structure.
/// </summary>
[Serializable]
public class SceneProdDeputyPaymentBillDetail : AopObject
{
/// <summary>
/// 代客还款的网商银行结算户信息
/// </summary>
[XmlElement("deputy_account")]
public string DeputyAccount { get; set; }
/// <summary>
/// 代客还款操作类型VALID 代客还款, INVALID 取消代客还款
/// </summary>
[XmlElement("deputy_type")]
public string DeputyType { get; set; }
/// <summary>
/// 期数
/// </summary>
[XmlElement("term")]
public string Term { get; set; }
}
}