123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- using System;
- using System.Collections.Generic;
- using System.Xml.Serialization;
- using System.Text;
- namespace COSXML.Model.Tag
- {
- /// <summary>
- /// 视频审核结果
- /// <see href="https://cloud.tencent.com/document/product/436/47317"/>
- /// </summary>
- [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<SnapshotDetail> Snapshot;
- [XmlElement]
- public List<AudioSectionDetail> 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;
- }
- }
- }
|