54 lines
1.3 KiB
C#
54 lines
1.3 KiB
C#
|
|
using System;
|
|||
|
|
using Newtonsoft.Json;
|
|||
|
|
|
|||
|
|
namespace Alipay.AopSdk.Core.Domain
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// AlipayFundTransThirdpartyRewardCreateModel Data Structure.
|
|||
|
|
/// </summary>
|
|||
|
|
[Serializable]
|
|||
|
|
public class AlipayFundTransThirdpartyRewardCreateModel : AopObject
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 打赏金额,单位:人民币分
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("amount")]
|
|||
|
|
public string Amount { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 扩展参数,json格式
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("ext_param")]
|
|||
|
|
public string ExtParam { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 外部业务号,用于幂等控制
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("out_no")]
|
|||
|
|
public string OutNo { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 收款用户的支付宝userId
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("receiver_user_id")]
|
|||
|
|
public string ReceiverUserId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 场景码,需业务方分配方可使用
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("scene")]
|
|||
|
|
public string Scene { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 付款用户的支付宝userId
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("sender_user_id")]
|
|||
|
|
public string SenderUserId { get; set; }
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 打赏的标题(理由)
|
|||
|
|
/// </summary>
|
|||
|
|
[JsonProperty("title")]
|
|||
|
|
public string Title { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|