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.

24 lines
848 B
C#

9 months ago
using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayPassTemplateUpdateResponse.
/// </summary>
public class AlipayPassTemplateUpdateResponse : AopResponse
{
/// <summary>
/// 接口调用返回结果信息(json字串): errorCode处理结果码错误码 errorMsg处理结果说明错误说明 tpl_id模板编号预期在调发券接口时必须传入 tpl_params动态参数变量列表预期在调发券接口时传入
/// </summary>
[XmlElement("result")]
public string Result { get; set; }
/// <summary>
/// 操作成功标识【true成功false失败】
/// </summary>
[XmlElement("success")]
public string Success { get; set; }
}
}