NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingCampaignItem...

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