/*
* Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
namespace TencentCloud.Vod.V20180717.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class SearchMediaRequest : AbstractModel
{
///
/// 搜索文本,模糊匹配媒体文件名称或描述信息,匹配项越多,匹配度越高,排序越优先。长度限制:64个字符。
///
[JsonProperty("Text")]
public string Text{ get; set; }
///
/// 标签集合,匹配集合中任意元素。
///
单个标签长度限制:8个字符。
///
数组长度限制:10。
///
[JsonProperty("Tags")]
public string[] Tags{ get; set; }
///
/// 分类 ID 集合,匹配集合指定 ID 的分类及其所有子类。数组长度限制:10。
///
[JsonProperty("ClassIds")]
public long?[] ClassIds{ get; set; }
///
/// 创建时间的开始时间。
///
大于等于开始时间。
///
格式按照 ISO 8601标准表示,详见 [ISO 日期格式说明](https://cloud.tencent.com/document/product/266/11732#I)。