NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignActi...

31 lines
1009 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>
/// KoubeiMarketingCampaignActivityQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignActivityQueryModel : AopObject
{
/// <summary>
/// 活动id
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 操作人id必须和operator_type配对出现不填时默认是商户
/// </summary>
[XmlElement("operator_id")]
public string OperatorId { get; set; }
/// <summary>
/// 操作人类型,有以下值可填MER外部商户MER_OPERATOR外部商户操作员PROVIDER外部服务商PROVIDER_STAFF外部服务商员工默认不需要填这个字段默认为MER
/// </summary>
[XmlElement("operator_type")]
public string OperatorType { get; set; }
}
}