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

25 lines
785 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>
/// AlipayCommerceTransportAdCreativeQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceTransportAdCreativeQueryModel : AopObject
{
/// <summary>
/// 广告主唯一ID是否唯一(不需要)用作校验防止跨user操作天猫接口调用传参
/// </summary>
[XmlElement("ad_user_id")]
public long AdUserId { get; set; }
/// <summary>
/// 广告创意ID是否唯一(不需要)用于通过创意ID查询创意详情天猫广告创意信息查询入参
/// </summary>
[XmlElement("creative_id")]
public long CreativeId { get; set; }
}
}