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.

19 lines
458 B
C#

using System;
using System.Xml.Serialization;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayMicropayOrderUnfreezeResponse.
/// </summary>
public class AlipayMicropayOrderUnfreezeResponse : AopResponse
{
/// <summary>
/// 冻结订单详情结果
/// </summary>
[XmlElement("unfreeze_order_detail")]
public UnfreezeOrderDetail UnfreezeOrderDetail { get; set; }
}
}