using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
///
/// AlipayTradeRoyaltyRelationBatchqueryResponse.
///
public class AlipayTradeRoyaltyRelationBatchqueryResponse : AopResponse
{
///
/// 当前页数
///
[XmlElement("current_page_num")]
public long CurrentPageNum { get; set; }
///
/// 当前页面大小
///
[XmlElement("current_page_size")]
public long CurrentPageSize { get; set; }
///
/// 分账收款方列表
///
[XmlArray("receiver_list")]
[XmlArrayItem("royalty_entity")]
public List ReceiverList { get; set; }
///
/// 业务结果码。SUCCESS:分账关系查询成功;FAIL:分账关系查询失败。
///
[XmlElement("result_code")]
public string ResultCode { get; set; }
///
/// 总页数
///
[XmlElement("total_page_num")]
public long TotalPageNum { get; set; }
///
/// 分账关系记录总数
///
[XmlElement("total_record_num")]
public long TotalRecordNum { get; set; }
}
}