csharp/core/Models/GetLiveChannelHistoryRequest.cs (23 lines of code) (raw):
// This file is auto-generated, don't edit it. Thanks.
using System;
using System.Collections.Generic;
using System.IO;
using Tea;
namespace AlibabaCloud.OSS.Models
{
public class GetLiveChannelHistoryRequest : TeaModel {
/// <summary>
/// BucketName
/// </summary>
[NameInMap("BucketName")]
[Validation(Required=true, Pattern="[a-zA-Z0-9-_]+")]
public string BucketName { get; set; }
/// <summary>
/// ChannelName
/// </summary>
[NameInMap("ChannelName")]
[Validation(Required=true)]
public string ChannelName { get; set; }
/// <summary>
/// Filter
/// </summary>
[NameInMap("Filter")]
[Validation(Required=false)]
public GetLiveChannelHistoryRequestFilter Filter { get; set; }
public class GetLiveChannelHistoryRequestFilter : TeaModel {
[NameInMap("comp")]
[Validation(Required=false)]
public string Comp { get; set; }
};
}
}