Class: TencentCloud::Ecdn::V20191012::DescribeEcdnDomainLogsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ecdn::V20191012::DescribeEcdnDomainLogsResponse
- Defined in:
- lib/v20191012/models.rb
Overview
DescribeEcdnDomainLogs返回参数结构体
Instance Attribute Summary collapse
-
#DomainLogs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(domainlogs = nil, totalcount = nil, requestid = nil) ⇒ DescribeEcdnDomainLogsResponse
constructor
A new instance of DescribeEcdnDomainLogsResponse.
Constructor Details
#initialize(domainlogs = nil, totalcount = nil, requestid = nil) ⇒ DescribeEcdnDomainLogsResponse
Returns a new instance of DescribeEcdnDomainLogsResponse.
349 350 351 352 353 |
# File 'lib/v20191012/models.rb', line 349 def initialize(domainlogs=nil, totalcount=nil, requestid=nil) @DomainLogs = domainlogs @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#DomainLogs ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
347 348 349 |
# File 'lib/v20191012/models.rb', line 347 def DomainLogs @DomainLogs end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
347 348 349 |
# File 'lib/v20191012/models.rb', line 347 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
347 348 349 |
# File 'lib/v20191012/models.rb', line 347 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
355 356 357 358 359 360 361 362 363 364 365 366 |
# File 'lib/v20191012/models.rb', line 355 def deserialize(params) unless params['DomainLogs'].nil? @DomainLogs = [] params['DomainLogs'].each do |i| domainlogs_tmp = DomainLogs.new domainlogs_tmp.deserialize(i) @DomainLogs << domainlogs_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |