NewGaoKaoApi/PaymentSDK/AliPay/Domain/ActivityCopyResult.cs

31 lines
918 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// ActivityCopyResult Data Structure.
/// </summary>
[Serializable]
public class ActivityCopyResult : AopObject
{
/// <summary>
/// 活动权益复制内容和入参中copy_content相对应表示其执行结果
/// </summary>
[XmlElement("copy_content")]
public string CopyContent { get; set; }
/// <summary>
/// 本对象中copy_content所对应的活动权益复制失败原因当result=fail时本字段才有值
/// </summary>
[XmlElement("error_msg")]
public string ErrorMsg { get; set; }
/// <summary>
/// 本对象中copy_content所对应的活动权益复制结果值为success和fail
/// </summary>
[XmlElement("result")]
public bool Result { get; set; }
}
}