18 lines
404 B
C#
18 lines
404 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Response
|
|
{
|
|
/// <summary>
|
|
/// AlipayMarketingCdpAdvertiseCreateResponse.
|
|
/// </summary>
|
|
public class AlipayMarketingCdpAdvertiseCreateResponse : AopResponse
|
|
{
|
|
/// <summary>
|
|
/// 创建广告唯一标识
|
|
/// </summary>
|
|
[XmlElement("ad_id")]
|
|
public string AdId { get; set; }
|
|
}
|
|
}
|