You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
913 B
C#

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.Response
{
/// <summary>
/// KoubeiMarketingCampaignActivityCreateResponse.
/// </summary>
public class KoubeiMarketingCampaignActivityCreateResponse : AopResponse
{
/// <summary>
/// 活动审批状态, 仅限服务商代商户创建活动时返回 AUDITING审核中,REJECT为驳回不返回表示通过
/// </summary>
[XmlElement("audit_status")]
public string AuditStatus { get; set; }
/// <summary>
/// 活动ID
/// </summary>
[XmlElement("camp_id")]
public string CampId { get; set; }
/// <summary>
/// 活动状态,目前返回以下状态, STARTING活动启动中 STARTED活动已启动
/// </summary>
[XmlElement("camp_status")]
public string CampStatus { get; set; }
}
}