Class: TencentCloud::Cloudaudit::V20190319::DescribeAuditTracksResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cloudaudit::V20190319::DescribeAuditTracksResponse
- Defined in:
- lib/v20190319/models.rb
Overview
DescribeAuditTracks返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(tracks = nil, totalcount = nil, requestid = nil) ⇒ DescribeAuditTracksResponse
constructor
A new instance of DescribeAuditTracksResponse.
Constructor Details
#initialize(tracks = nil, totalcount = nil, requestid = nil) ⇒ DescribeAuditTracksResponse
Returns a new instance of DescribeAuditTracksResponse.
468 469 470 471 472 |
# File 'lib/v20190319/models.rb', line 468 def initialize(tracks=nil, totalcount=nil, requestid=nil) @Tracks = tracks @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
466 467 468 |
# File 'lib/v20190319/models.rb', line 466 def RequestId @RequestId end |
#TotalCount ⇒ Object
466 467 468 |
# File 'lib/v20190319/models.rb', line 466 def TotalCount @TotalCount end |
#Tracks ⇒ Object
466 467 468 |
# File 'lib/v20190319/models.rb', line 466 def Tracks @Tracks end |
Instance Method Details
#deserialize(params) ⇒ Object
474 475 476 477 478 479 480 481 482 483 484 485 |
# File 'lib/v20190319/models.rb', line 474 def deserialize(params) unless params['Tracks'].nil? @Tracks = [] params['Tracks'].each do |i| tracks_tmp = Tracks.new tracks_tmp.deserialize(i) @Tracks << tracks_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |