NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignMemb...

25 lines
650 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>
/// KoubeiMarketingCampaignMemberTemplateOnlineModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignMemberTemplateOnlineModel : AopObject
{
/// <summary>
/// 会员模板id
/// </summary>
[XmlElement("member_template_id")]
public string MemberTemplateId { get; set; }
/// <summary>
/// 请求ID由开发者生成并保证唯一性
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}