Class: TencentCloud::Cfg::V20210820::DescribeActionLibraryListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cfg::V20210820::DescribeActionLibraryListResponse
- Defined in:
- lib/v20210820/models.rb
Overview
DescribeActionLibraryList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(results = nil, total = nil, requestid = nil) ⇒ DescribeActionLibraryListResponse
constructor
A new instance of DescribeActionLibraryListResponse.
Constructor Details
#initialize(results = nil, total = nil, requestid = nil) ⇒ DescribeActionLibraryListResponse
Returns a new instance of DescribeActionLibraryListResponse.
623 624 625 626 627 |
# File 'lib/v20210820/models.rb', line 623 def initialize(results=nil, total=nil, requestid=nil) @Results = results @Total = total @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
621 622 623 |
# File 'lib/v20210820/models.rb', line 621 def RequestId @RequestId end |
#Results ⇒ Object
621 622 623 |
# File 'lib/v20210820/models.rb', line 621 def Results @Results end |
#Total ⇒ Object
621 622 623 |
# File 'lib/v20210820/models.rb', line 621 def Total @Total end |
Instance Method Details
#deserialize(params) ⇒ Object
629 630 631 632 633 634 635 636 637 638 639 640 |
# File 'lib/v20210820/models.rb', line 629 def deserialize(params) unless params['Results'].nil? @Results = [] params['Results'].each do |i| actionlibrarylistresult_tmp = ActionLibraryListResult.new actionlibrarylistresult_tmp.deserialize(i) @Results << actionlibrarylistresult_tmp end end @Total = params['Total'] @RequestId = params['RequestId'] end |