NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiContentContentstatusM...

37 lines
1.1 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>
/// KoubeiContentContentstatusModifyModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiContentContentstatusModifyModel : AopObject
{
/// <summary>
/// 口碑端内容唯一id必填
/// </summary>
[XmlElement("content_id")]
public string ContentId { get; set; }
/// <summary>
/// 说明
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 操作原因
/// </summary>
[XmlElement("reason")]
public string Reason { get; set; }
/// <summary>
/// 需要修改的内容状态,必填.内容状态是审核拒绝(AUDIT_DENY),才可以修改否则不能修改. 状态枚举: INIT,初始态, AUDITING,审核中, INFOSEC_AUDITING,风控审核中, ENABLE,有效, DISABLE,无效, AUDIT_DENY,审核拒绝
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}