Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayFundAuthOrderFreezeModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

72 lines
2.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayFundAuthOrderFreezeModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundAuthOrderFreezeModel : AopObject
{
/// <summary>
/// 需要冻结的金额,单位为:元(人民币),精确到小数点后两位 取值范围:[0.01,100000000.00]
/// </summary>
[JsonProperty("amount")]
public string Amount { get; set; }
/// <summary>
/// 支付授权码25~30开头的长度为16~24位的数字实际字符串长度以开发者获取的付款码长度为准
/// </summary>
[JsonProperty("auth_code")]
public string AuthCode { get; set; }
/// <summary>
/// 授权码类型 目前仅支持"bar_code"
/// </summary>
[JsonProperty("auth_code_type")]
public string AuthCodeType { get; set; }
/// <summary>
/// 业务扩展参数用于商户的特定业务信息的传递json格式
/// </summary>
[JsonProperty("extra_param")]
public string ExtraParam { get; set; }
/// <summary>
/// 业务订单的简单描述,如商品名称等 长度不超过100个字母或50个汉字
/// </summary>
[JsonProperty("order_title")]
public string OrderTitle { get; set; }
/// <summary>
/// 商户授权资金订单号 ,不能包含除中文、英文、数字以外的字符,创建后不能修改,需要保证在商户端不重复。
/// </summary>
[JsonProperty("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 商户本次资金操作的请求流水号,用于标示请求流水的唯一性,不能包含除中文、英文、数字以外的字符,需要保证在商户端不重复。
/// </summary>
[JsonProperty("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 该笔订单允许的最晚付款时间,逾期将关闭该笔订单 取值范围1m15d。m-分钟h-小时d-天。 该参数数值不接受小数点, 如 1.5h可转换为90m 如果为空默认15m
/// </summary>
[JsonProperty("pay_timeout")]
public string PayTimeout { get; set; }
/// <summary>
/// 收款方支付宝账号Email或手机号如果收款方支付宝登录号(payee_logon_id)和用户号(payee_user_id)同时传递,则以用户号(payee_user_id)为准,如果商户有勾选花呗渠道,收款方支付宝登录号(payee_logon_id)和用户号(payee_user_id)不能同时为空。
/// </summary>
[JsonProperty("payee_logon_id")]
public string PayeeLogonId { get; set; }
/// <summary>
/// 收款方的支付宝唯一用户号,以2088开头的16位纯数字组成如果非空则会在支付时校验交易的的收款方与此是否一致如果商户有勾选花呗渠道收款方支付宝登录号(payee_logon_id)和用户号(payee_user_id)不能同时为空。
/// </summary>
[JsonProperty("payee_user_id")]
public string PayeeUserId { get; set; }
}
}