You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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; }
}
}