代码修改后的版本,全部提交
This commit is contained in:
132
TencentCloud/Cmq/V20190304/Models/Subscription.cs
Normal file
132
TencentCloud/Cmq/V20190304/Models/Subscription.cs
Normal file
@@ -0,0 +1,132 @@
|
||||
/*
|
||||
* 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.Cmq.V20190304.Models
|
||||
{
|
||||
using Newtonsoft.Json;
|
||||
using System.Collections.Generic;
|
||||
using TencentCloud.Common;
|
||||
|
||||
public class Subscription : AbstractModel
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// SubscriptionName
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("SubscriptionName")]
|
||||
public string SubscriptionName{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// SubscriptionId
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("SubscriptionId")]
|
||||
public string SubscriptionId{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// TopicOwner
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("TopicOwner")]
|
||||
public ulong? TopicOwner{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// MsgCount
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("MsgCount")]
|
||||
public ulong? MsgCount{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// LastModifyTime
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("LastModifyTime")]
|
||||
public ulong? LastModifyTime{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// CreateTime
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("CreateTime")]
|
||||
public ulong? CreateTime{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// BindingKey
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("BindingKey")]
|
||||
public string[] BindingKey{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Endpoint
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("Endpoint")]
|
||||
public string Endpoint{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// FilterTags
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("FilterTags")]
|
||||
public string[] FilterTags{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Protocol
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("Protocol")]
|
||||
public string Protocol{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// NotifyStrategy
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("NotifyStrategy")]
|
||||
public string NotifyStrategy{ get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// NotifyContentFormat
|
||||
/// 注意:此字段可能返回 null,表示取不到有效值。
|
||||
/// </summary>
|
||||
[JsonProperty("NotifyContentFormat")]
|
||||
public string NotifyContentFormat{ 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 + "SubscriptionName", this.SubscriptionName);
|
||||
this.SetParamSimple(map, prefix + "SubscriptionId", this.SubscriptionId);
|
||||
this.SetParamSimple(map, prefix + "TopicOwner", this.TopicOwner);
|
||||
this.SetParamSimple(map, prefix + "MsgCount", this.MsgCount);
|
||||
this.SetParamSimple(map, prefix + "LastModifyTime", this.LastModifyTime);
|
||||
this.SetParamSimple(map, prefix + "CreateTime", this.CreateTime);
|
||||
this.SetParamArraySimple(map, prefix + "BindingKey.", this.BindingKey);
|
||||
this.SetParamSimple(map, prefix + "Endpoint", this.Endpoint);
|
||||
this.SetParamArraySimple(map, prefix + "FilterTags.", this.FilterTags);
|
||||
this.SetParamSimple(map, prefix + "Protocol", this.Protocol);
|
||||
this.SetParamSimple(map, prefix + "NotifyStrategy", this.NotifyStrategy);
|
||||
this.SetParamSimple(map, prefix + "NotifyContentFormat", this.NotifyContentFormat);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user