using System; using System.Xml.Serialization; namespace Aop.Api.Response { /// /// AlipayMarketingCampaignDiscountBudgetQueryResponse. /// public class AlipayMarketingCampaignDiscountBudgetQueryResponse : AopResponse { /// /// 预算ID /// [XmlElement("budget_id")] public string BudgetId { get; set; } /// /// 预算总金额,单位:元 /// [XmlElement("total_amount")] public string TotalAmount { get; set; } /// /// 已使用金额 /// [XmlElement("used_amount")] public string UsedAmount { get; set; } } }