using System; using System.Collections.Generic; using System.Text; using COSXML.Common; using COSXML.Model.Object; using COSXML.Model.Tag; using COSXML.CosException; using COSXML.Utils; namespace COSXML.Model.CI { /// /// 查询视频审核任务 /// /// public sealed class GetVideoCensorJobRequest : CIRequest { public GetVideoCensorJobRequest(string bucket, string JobId) : base(bucket) { this.method = CosRequestMethod.GET; this.SetRequestPath("/video/auditing/" + JobId); } } }