NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPcreditHuabeiAuthSign...

61 lines
2.2 KiB
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>
/// AlipayPcreditHuabeiAuthSignApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPcreditHuabeiAuthSignApplyModel : AopObject
{
/// <summary>
/// 支付宝的用户id。用于水平校验当传入用户id与实际唤起支付宝用户id不一致时签约申请失败。特殊业务(用户在商户侧已经绑定了支付宝A不允许支付宝B进行开通花芝)需求定制,无特殊需求时不要传入此商户
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// 外部渠道标识
/// </summary>
[XmlElement("channel")]
public string Channel { get; set; }
/// <summary>
/// 自定义冻结金额,单位:元。部分商户开放,需要申请
/// </summary>
[XmlElement("freeze_amount")]
public string FreezeAmount { get; set; }
/// <summary>
/// 外部请求号,对应一次请求交互流水,由调用方生成
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 外部签约号,调用方需要保证唯一
/// </summary>
[XmlElement("out_sign_no")]
public string OutSignNo { get; set; }
/// <summary>
/// 支付宝商家ID
/// </summary>
[XmlElement("seller_id")]
public string SellerId { get; set; }
/// <summary>
/// 模版ID对接时联系技术支持确定
/// </summary>
[XmlElement("template_id")]
public string TemplateId { get; set; }
/// <summary>
/// 该笔订单允许的最晚完成时间逾期支付宝将关闭。取值范围1m15d。m表示分钟h表示小时d表示天。该参数数值不接受小数点 如1.5h可转换为90m。 订单关闭时会发送关闭的商户通知商户需要进行处理并标记对应的订单作废。默认为1h
/// </summary>
[XmlElement("timeout_express")]
public string TimeoutExpress { get; set; }
}
}