NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportAdPl...

25 lines
605 B
C#
Raw 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>
/// AlipayCommerceTransportAdPlanGetModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportAdPlanGetModel : AopObject
{
/// <summary>
/// 广告系统的用户ID
/// </summary>
[XmlElement("ad_user_id")]
public long AdUserId { get; set; }
/// <summary>
/// 通过API新建计划获得的计划ID
/// </summary>
[XmlElement("plan_id")]
public long PlanId { get; set; }
}
}