NewGaoKaoApi/PaymentSDK/AliPay/Domain/BudgetInfo.cs

37 lines
954 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>
/// BudgetInfo Data Structure.
/// </summary>
[Serializable]
public class BudgetInfo : AopObject
{
/// <summary>
/// 预算数量
/// </summary>
[XmlElement("budget_total")]
public string BudgetTotal { get; set; }
/// <summary>
/// 预算类型
/// </summary>
[XmlElement("budget_type")]
public string BudgetType { get; set; }
/// <summary>
/// 设置每天的预算如每天的预算设置为100即该活动一天最多发放100次
/// </summary>
[XmlElement("sub_budget_dimension")]
public string SubBudgetDimension { get; set; }
/// <summary>
/// 用于控制子纬度的预算数量
/// </summary>
[XmlElement("sub_value")]
public string SubValue { get; set; }
}
}