Class: TencentCloud::Omics::V20221128::DescribeRunGroupsResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Omics::V20221128::DescribeRunGroupsResponse
- Defined in:
- lib/v20221128/models.rb
Overview
DescribeRunGroups返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, rungroups = nil, requestid = nil) ⇒ DescribeRunGroupsResponse
constructor
A new instance of DescribeRunGroupsResponse.
Constructor Details
#initialize(totalcount = nil, rungroups = nil, requestid = nil) ⇒ DescribeRunGroupsResponse
Returns a new instance of DescribeRunGroupsResponse.
586 587 588 589 590 |
# File 'lib/v20221128/models.rb', line 586 def initialize(totalcount=nil, rungroups=nil, requestid=nil) @TotalCount = totalcount @RunGroups = rungroups @RequestId = requestid end |
Instance Attribute Details
#RequestId ⇒ Object
584 585 586 |
# File 'lib/v20221128/models.rb', line 584 def RequestId @RequestId end |
#RunGroups ⇒ Object
584 585 586 |
# File 'lib/v20221128/models.rb', line 584 def RunGroups @RunGroups end |
#TotalCount ⇒ Object
584 585 586 |
# File 'lib/v20221128/models.rb', line 584 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
592 593 594 595 596 597 598 599 600 601 602 603 |
# File 'lib/v20221128/models.rb', line 592 def deserialize(params) @TotalCount = params['TotalCount'] unless params['RunGroups'].nil? @RunGroups = [] params['RunGroups'].each do |i| rungroup_tmp = RunGroup.new rungroup_tmp.deserialize(i) @RunGroups << rungroup_tmp end end @RequestId = params['RequestId'] end |