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

30 lines
898 B
C#
Raw Permalink 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>
/// AlipayUserBenefitStatusUpdateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserBenefitStatusUpdateModel : AopObject
{
/// <summary>
/// 权益的ID
/// </summary>
[JsonProperty("benefit_id")]
public string BenefitId { get; set; }
/// <summary>
/// YES表示当前操作的是会员3.0权益NO表示当前操作的是改版之前的权益
/// </summary>
[JsonProperty("benefit_new_flag")]
public string BenefitNewFlag { get; set; }
/// <summary>
/// 1:上线, 0:下线, 2:失效; 上线状态所有人可见,不可编辑; 下线状态白名单可见,可以编辑; 失效状态所有人不可见,不可编辑。
/// </summary>
[JsonProperty("benefit_status")]
public string BenefitStatus { get; set; }
}
}