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

25 lines
599 B
C#

using System.Collections.Generic;
using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayOpenPublicMatchuserLabelDeleteResponse.
/// </summary>
public class AlipayOpenPublicMatchuserLabelDeleteResponse : AopResponse
{
/// <summary>
/// 用户打标失败数量
/// </summary>
[JsonProperty("error_count")]
public long ErrorCount { get; set; }
/// <summary>
/// 出错的匹配器列表
/// </summary>
[JsonProperty("error_matchers")]
public List<ErrorMatcher> ErrorMatchers { get; set; }
}
}