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

49 lines
1.5 KiB
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>
/// KoubeiMarketingCampaignActivityOfflineModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingCampaignActivityOfflineModel : AopObject
{
/// <summary>
/// 活动Id
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 下架活动的扩展信息,不需要设置
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { 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; }
/// <summary>
/// 外部批次ID,每次需传入不同的值
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 下架原因
/// </summary>
[XmlElement("reason")]
public string Reason { get; set; }
}
}