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.

32 lines
769 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayPassCodeAddResponse.
/// </summary>
public class AlipayPassCodeAddResponse : AopResponse
{
/// <summary>
/// 成功时返回业务参数
/// </summary>
[XmlArray("biz_result")]
[XmlArrayItem("string")]
public List<string> BizResult { get; set; }
/// <summary>
/// 返回码.
/// </summary>
[XmlElement("error_code")]
public string ErrorCode { get; set; }
/// <summary>
/// 是否发码成功的标识。
/// </summary>
[XmlElement("success")]
public bool Success { get; set; }
}
}