NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppYoukuvideoAudi...

37 lines
1.2 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>
/// 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; }
}
}