using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
///
/// AlipayMarketingCampaignDiscountBudgetCreateResponse.
///
public class AlipayMarketingCampaignDiscountBudgetCreateResponse : AopResponse
{
///
/// 预算ID
///
[XmlElement("budget_id")]
public string BudgetId { get; set; }
///
/// 立减支付确认链接
///
[XmlElement("confirm_uri")]
public string ConfirmUri { get; set; }
///
/// 资金订单号
///
[XmlElement("fund_order_no")]
public string FundOrderNo { get; set; }
}
}