18 lines
531 B
C#
18 lines
531 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Response
|
||
{
|
||
/// <summary>
|
||
/// AlipayMarketingCardUpdateResponse.
|
||
/// </summary>
|
||
public class AlipayMarketingCardUpdateResponse : AopResponse
|
||
{
|
||
/// <summary>
|
||
/// 二级错误处理结果(如果公用返回结果为false,则可以看这个接口判断明细原因) 如果公用返回为true,则该字段为空
|
||
/// </summary>
|
||
[XmlElement("result_code")]
|
||
public string ResultCode { get; set; }
|
||
}
|
||
}
|