NewGaoKaoApi/PaymentSDK/AliPay/Domain/MBudgetInfo.cs

31 lines
885 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>
/// MBudgetInfo Data Structure.
/// </summary>
[Serializable]
public class MBudgetInfo : AopObject
{
/// <summary>
/// 日预算设置必须在1~999999999范围内不限制填写“-1”注意日预算不能大于总预算
/// </summary>
[XmlElement("budget_daily")]
public string BudgetDaily { get; set; }
/// <summary>
/// 总预算设置必须在1~999999999范围内不限制填写“-1”
/// </summary>
[XmlElement("budget_total")]
public string BudgetTotal { get; set; }
/// <summary>
/// 预算类型支持枚举数量预算QUANTITY
/// </summary>
[XmlElement("budget_type")]
public string BudgetType { get; set; }
}
}