37 lines
1.2 KiB
C#
37 lines
1.2 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayOpenAppYoukuvideoAuditcallbackSendModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayOpenAppYoukuvideoAuditcallbackSendModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 审核后状态:allowed 审核通过,blocked 屏蔽驳回, censoring 审核中
|
||
/// </summary>
|
||
[XmlElement("action")]
|
||
public string Action { get; set; }
|
||
|
||
/// <summary>
|
||
/// 审核前状态:allowed 审核通过,blocked 屏蔽驳回, censoring 审核中
|
||
/// </summary>
|
||
[XmlElement("old_action")]
|
||
public string OldAction { get; set; }
|
||
|
||
/// <summary>
|
||
/// 审核来源,1表示审核-一审、2表示审核-二审、3表示审核-三审、4表示审核-综合审、5表示审核-修改审, 30表示播控, 31表示版权解除屏蔽操作,32VMS解屏蔽,33表示视频替换 40表示来疯先发后审 41 表示来疯审核
|
||
/// </summary>
|
||
[XmlElement("source")]
|
||
public string Source { get; set; }
|
||
|
||
/// <summary>
|
||
/// 视频ID
|
||
/// </summary>
|
||
[XmlElement("vid")]
|
||
public string Vid { get; set; }
|
||
}
|
||
}
|