Class: TencentCloud::Omics::V20221128::DescribeRunGroupsResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20221128/models.rb

Overview

DescribeRunGroups返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#RequestIdObject

Parameters:

  • TotalCount:

    符合条件的数量。

  • RunGroups:

    任务批次列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



584
585
586
# File 'lib/v20221128/models.rb', line 584

def RequestId
  @RequestId
end

#RunGroupsObject

Parameters:

  • TotalCount:

    符合条件的数量。

  • RunGroups:

    任务批次列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



584
585
586
# File 'lib/v20221128/models.rb', line 584

def RunGroups
  @RunGroups
end

#TotalCountObject

Parameters:

  • TotalCount:

    符合条件的数量。

  • RunGroups:

    任务批次列表。

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



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