Files
g.hnyhua.cn/TencentCloud/Tsf/V20180326/Models/Config.cs
2026-02-07 15:48:27 +08:00

133 lines
4.9 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
/*
* 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.Tsf.V20180326.Models
{
using Newtonsoft.Json;
using System.Collections.Generic;
using TencentCloud.Common;
public class Config : AbstractModel
{
/// <summary>
/// 配置项ID
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ConfigId")]
public string ConfigId{ get; set; }
/// <summary>
/// 配置项名称
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ConfigName")]
public string ConfigName{ get; set; }
/// <summary>
/// 配置项版本
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ConfigVersion")]
public string ConfigVersion{ get; set; }
/// <summary>
/// 配置项版本描述
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ConfigVersionDesc")]
public string ConfigVersionDesc{ get; set; }
/// <summary>
/// 配置项值
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ConfigValue")]
public string ConfigValue{ get; set; }
/// <summary>
/// 配置项类型
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ConfigType")]
public string ConfigType{ get; set; }
/// <summary>
/// 创建时间
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("CreationTime")]
public string CreationTime{ get; set; }
/// <summary>
/// 应用ID
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ApplicationId")]
public string ApplicationId{ get; set; }
/// <summary>
/// 应用名称
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ApplicationName")]
public string ApplicationName{ get; set; }
/// <summary>
/// 删除标识true可以删除false不可删除
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("DeleteFlag")]
public bool? DeleteFlag{ get; set; }
/// <summary>
/// 最后更新时间
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("LastUpdateTime")]
public string LastUpdateTime{ get; set; }
/// <summary>
/// 配置项版本数量
/// 注意:此字段可能返回 null表示取不到有效值。
/// </summary>
[JsonProperty("ConfigVersionCount")]
public long? ConfigVersionCount{ get; set; }
/// <summary>
/// For internal usage only. DO NOT USE IT.
/// </summary>
internal override void ToMap(Dictionary<string, string> map, string prefix)
{
this.SetParamSimple(map, prefix + "ConfigId", this.ConfigId);
this.SetParamSimple(map, prefix + "ConfigName", this.ConfigName);
this.SetParamSimple(map, prefix + "ConfigVersion", this.ConfigVersion);
this.SetParamSimple(map, prefix + "ConfigVersionDesc", this.ConfigVersionDesc);
this.SetParamSimple(map, prefix + "ConfigValue", this.ConfigValue);
this.SetParamSimple(map, prefix + "ConfigType", this.ConfigType);
this.SetParamSimple(map, prefix + "CreationTime", this.CreationTime);
this.SetParamSimple(map, prefix + "ApplicationId", this.ApplicationId);
this.SetParamSimple(map, prefix + "ApplicationName", this.ApplicationName);
this.SetParamSimple(map, prefix + "DeleteFlag", this.DeleteFlag);
this.SetParamSimple(map, prefix + "LastUpdateTime", this.LastUpdateTime);
this.SetParamSimple(map, prefix + "ConfigVersionCount", this.ConfigVersionCount);
}
}
}