61 lines
2.1 KiB
C#
61 lines
2.1 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayPcreditHuabeiAuthSettleApplyModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayPcreditHuabeiAuthSettleApplyModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// MERCHANT_SETTLE 结算(需要主动退出在发起结算); QUIT_SETTLE 退出协议(解约协议); PERIOD_SETTLE 分阶段结算(不解约协议); 默认为 MERCHANT_SETTLE
|
||
/// </summary>
|
||
[XmlElement("action_type")]
|
||
public string ActionType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支付宝系统中用以唯一标识用户签约记录的编号。
|
||
/// </summary>
|
||
[XmlElement("agreement_no")]
|
||
public string AgreementNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 买家在支付宝的用户id
|
||
/// </summary>
|
||
[XmlElement("alipay_user_id")]
|
||
public string AlipayUserId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 业务扩展参数
|
||
/// </summary>
|
||
[XmlElement("extend_params")]
|
||
public ExtraParams ExtendParams { get; set; }
|
||
|
||
/// <summary>
|
||
/// 该参数控制结算完成之后的操作,true或者不填代表解约,false代表不解约
|
||
/// </summary>
|
||
[XmlElement("need_terminated")]
|
||
public string NeedTerminated { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户本次操作的请求流水号,用于标示请求流水的唯一性,不能包含除中文、英文、数字以外的字符,需要保证在商户端不重复。
|
||
/// </summary>
|
||
[XmlElement("out_request_no")]
|
||
public string OutRequestNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 需要支付的金额,单位为:元(人民币),精确到小数点后两位
|
||
/// </summary>
|
||
[XmlElement("pay_amount")]
|
||
public string PayAmount { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户的支付宝用户id。如果该值为空,则默认为商户签约账号对应的支付宝用户ID。
|
||
/// </summary>
|
||
[XmlElement("seller_id")]
|
||
public string SellerId { get; set; }
|
||
}
|
||
}
|