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.

27 lines
667 B
C#

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayUserAccountFreezeGetResponse.
/// </summary>
public class AlipayUserAccountFreezeGetResponse : AopResponse
{
/// <summary>
/// 冻结金额列表
/// </summary>
[XmlArray("freeze_items")]
[XmlArrayItem("account_freeze")]
public List<AccountFreeze> FreezeItems { get; set; }
/// <summary>
/// 冻结总条数
/// </summary>
[XmlElement("total_results")]
public string TotalResults { get; set; }
}
}