using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
namespace COSXML.Model.Tag
{
///
/// 视频审核结果
///
///
[XmlRoot("Response")]
public sealed class VideoCensorResult
{
[XmlElement]
public JobsDetailStruct JobsDetail;
[XmlElement]
public string NonExistJobIds;
public sealed class JobsDetailStruct
{
[XmlElement]
public string Code;
[XmlElement]
public string Message;
[XmlElement]
public string JobId;
[XmlElement]
public string State;
[XmlElement]
public string CreationTime;
[XmlElement]
public string Object;
[XmlElement]
public string SnapshotCount;
[XmlElement]
public string Result;
[XmlElement]
public Info PornInfo;
[XmlElement]
public Info TerrorismInfo;
[XmlElement]
public Info PoliticsInfo;
[XmlElement]
public Info AdsInfo;
[XmlElement]
public List Snapshot;
[XmlElement]
public List AudioSection;
}
public sealed class Info
{
[XmlElement]
public string HitFlag;
[XmlElement]
public string Count;
}
public sealed class SnapshotDetail
{
[XmlElement]
public string Url;
[XmlElement]
public string SnapshotTime;
[XmlElement]
public string Text;
[XmlElement]
public SnapshotSectionInfoDetail PornInfo;
[XmlElement]
public SnapshotSectionInfoDetail TerrorismInfo;
[XmlElement]
public SnapshotSectionInfoDetail PoliticsInfo;
[XmlElement]
public SnapshotSectionInfoDetail AdsInfo;
}
public sealed class AudioSectionDetail
{
[XmlElement]
public string Url;
[XmlElement]
public string Text;
[XmlElement]
public string OffsetTime;
[XmlElement]
public string Duration;
[XmlElement]
public AudioSectionInfoDetail PornInfo;
[XmlElement]
public AudioSectionInfoDetail TerrorismInfo;
[XmlElement]
public AudioSectionInfoDetail PoliticsInfo;
[XmlElement]
public AudioSectionInfoDetail AdsInfo;
}
public sealed class SnapshotSectionInfoDetail
{
[XmlElement]
public string HitFlag;
[XmlElement]
public string Score;
[XmlElement]
public string Label;
[XmlElement]
public string SubLabel;
}
public sealed class AudioSectionInfoDetail
{
[XmlElement]
public string HitFlag;
[XmlElement]
public string Score;
[XmlElement]
public string Keywords;
}
}
}