初始提交
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user