Class: TencentCloud::Cdn::V20180606::ListClsTopicDomainsResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdn::V20180606::ListClsTopicDomainsResponse
- Defined in:
- lib/v20180606/models.rb
Overview
ListClsTopicDomains返回参数结构体
Instance Attribute Summary collapse
-
#AppId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#Channel ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#DomainAreaConfigs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#LogsetId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TopicId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TopicName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#UpdateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(appid = nil, channel = nil, logsetid = nil, topicid = nil, domainareaconfigs = nil, topicname = nil, updatetime = nil, requestid = nil) ⇒ ListClsTopicDomainsResponse
constructor
A new instance of ListClsTopicDomainsResponse.
Constructor Details
#initialize(appid = nil, channel = nil, logsetid = nil, topicid = nil, domainareaconfigs = nil, topicname = nil, updatetime = nil, requestid = nil) ⇒ ListClsTopicDomainsResponse
Returns a new instance of ListClsTopicDomainsResponse.
8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 |
# File 'lib/v20180606/models.rb', line 8580 def initialize(appid=nil, channel=nil, logsetid=nil, topicid=nil, domainareaconfigs=nil, topicname=nil, updatetime=nil, requestid=nil) @AppId = appid @Channel = channel @LogsetId = logsetid @TopicId = topicid @DomainAreaConfigs = domainareaconfigs @TopicName = topicname @UpdateTime = updatetime @RequestId = requestid end |
Instance Attribute Details
#AppId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def AppId @AppId end |
#Channel ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def Channel @Channel end |
#DomainAreaConfigs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def DomainAreaConfigs @DomainAreaConfigs end |
#LogsetId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def LogsetId @LogsetId end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def RequestId @RequestId end |
#TopicId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def TopicId @TopicId end |
#TopicName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def TopicName @TopicName end |
#UpdateTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
8578 8579 8580 |
# File 'lib/v20180606/models.rb', line 8578 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 |
# File 'lib/v20180606/models.rb', line 8591 def deserialize(params) @AppId = params['AppId'] @Channel = params['Channel'] @LogsetId = params['LogsetId'] @TopicId = params['TopicId'] unless params['DomainAreaConfigs'].nil? @DomainAreaConfigs = [] params['DomainAreaConfigs'].each do |i| domainareaconfig_tmp = DomainAreaConfig.new domainareaconfig_tmp.deserialize(i) @DomainAreaConfigs << domainareaconfig_tmp end end @TopicName = params['TopicName'] @UpdateTime = params['UpdateTime'] @RequestId = params['RequestId'] end |