NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataDataserviceBillDo...

25 lines
1.0 KiB
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>
/// AlipayDataDataserviceBillDownloadurlQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataDataserviceBillDownloadurlQueryModel : AopObject
{
/// <summary>
/// 账单时间日账单格式为yyyy-MM-dd最早可下载2016年1月1日开始的日账单月账单格式为yyyy-MM最早可下载2016年1月开始的月账单。
/// </summary>
[XmlElement("bill_date")]
public string BillDate { get; set; }
/// <summary>
/// 账单类型商户通过接口或商户经开放平台授权后其所属服务商通过接口可以获取以下账单类型trade、signcustomertrade指商户基于支付宝交易收单的业务账单signcustomer是指基于商户支付宝余额收入及支出等资金变动的帐务账单。
/// </summary>
[XmlElement("bill_type")]
public string BillType { get; set; }
}
}