NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceTransportAdCr...

25 lines
813 B
C#
Raw Permalink 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>
/// AlipayCommerceTransportAdCreativeCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportAdCreativeCreateModel : AopObject
{
/// <summary>
/// 广告创意与物料信息;是否唯一(不需要);用于新增广告创意与创意下包含的物料信息;天猫广告投放传参
/// </summary>
[XmlElement("ad_creative")]
public AdCreative AdCreative { get; set; }
/// <summary>
/// 广告主唯一ID是否唯一(不需要)用作校验防止跨user操作天猫接口调用传参
/// </summary>
[XmlElement("ad_user_id")]
public long AdUserId { get; set; }
}
}