Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayOpenPublicMatchuserLabelDeleteResponse.cs

25 lines
599 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
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; }
}
}