2022-01-14 14:37:52 +08:00
|
|
|
|
namespace SKIT.FlurlHttpClient.Wechat.Api.Models
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// <para>表示 [POST] /cgi-bin/midas/present 接口的请求。</para>
|
|
|
|
|
/// </summary>
|
2022-02-28 21:06:57 +08:00
|
|
|
|
public class CgibinMidasPresentRequest : CgibinMidasRequestBase, IInferable<CgibinMidasPresentRequest, CgibinMidasPresentResponse>
|
2021-05-28 19:23:28 +08:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置订单号。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("bill_no")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("bill_no")]
|
|
|
|
|
public string BillNumber { get; set; } = string.Empty;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 获取或设置赠送游戏币的个数。
|
|
|
|
|
/// </summary>
|
|
|
|
|
[Newtonsoft.Json.JsonProperty("present_counts")]
|
|
|
|
|
[System.Text.Json.Serialization.JsonPropertyName("present_counts")]
|
|
|
|
|
public int PresentAmount { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|