You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
698 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayOpenPublicMatchuserLabelCreateResponse.
/// </summary>
public class AlipayOpenPublicMatchuserLabelCreateResponse : AopResponse
{
/// <summary>
/// 用户打标失败数量
/// </summary>
[XmlElement("error_count")]
public long ErrorCount { get; set; }
/// <summary>
/// 出错的匹配器列表
/// </summary>
[XmlArray("error_matchers")]
[XmlArrayItem("error_matcher")]
public List<ErrorMatcher> ErrorMatchers { get; set; }
}
}