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

22 lines
543 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 Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayOpenPublicLabelCreateResponse.
/// </summary>
public class AlipayOpenPublicLabelCreateResponse : AopResponse
{
/// <summary>
/// 支付宝返回的标签ID开发者后续通过该ID进行标签的查询、修改、删除等操作
/// </summary>
[JsonProperty("id")]
public long Id { get; set; }
/// <summary>
/// 开发者传入name的值
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
}
}