NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPcreditHuabeiAuthOrde...

37 lines
1.2 KiB
C#
Raw 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>
/// AlipayPcreditHuabeiAuthOrderCloseModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPcreditHuabeiAuthOrderCloseModel : AopObject
{
/// <summary>
/// 支付宝userId
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 支付宝侧花呗冻结、解冻操作单据id。在原先的冻结或者解冻接口调用中同步返回给商户或者通过商户通知返回给商户。推荐优先使用本参数。与out_request_no不能同时为空。
/// </summary>
[XmlElement("auth_opt_id")]
public string AuthOptId { get; set; }
/// <summary>
/// 商户自定义的操作员信息,仅作记录用,无实际业务用途。
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 商户原先调用冻结、解冻接口传入的请求流水号与auth_opt_id不能同时为null。
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
}
}