Class: TencentCloud::Cwp::V20180228::DescribeAssetWebServiceProcessListResponse

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

Overview

DescribeAssetWebServiceProcessList返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(process = nil, total = nil, requestid = nil) ⇒ DescribeAssetWebServiceProcessListResponse

Returns a new instance of DescribeAssetWebServiceProcessListResponse.



11072
11073
11074
11075
11076
# File 'lib/v20180228/models.rb', line 11072

def initialize(process=nil, total=nil, requestid=nil)
  @Process = process
  @Total = total
  @RequestId = requestid
end

Instance Attribute Details

#ProcessObject

Parameters:

  • Process:

    进程列表

  • Total:

    总数

  • RequestId:

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



11070
11071
11072
# File 'lib/v20180228/models.rb', line 11070

def Process
  @Process
end

#RequestIdObject

Parameters:

  • Process:

    进程列表

  • Total:

    总数

  • RequestId:

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



11070
11071
11072
# File 'lib/v20180228/models.rb', line 11070

def RequestId
  @RequestId
end

#TotalObject

Parameters:

  • Process:

    进程列表

  • Total:

    总数

  • RequestId:

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



11070
11071
11072
# File 'lib/v20180228/models.rb', line 11070

def Total
  @Total
end

Instance Method Details

#deserialize(params) ⇒ Object



11078
11079
11080
11081
11082
11083
11084
11085
11086
11087
11088
11089
# File 'lib/v20180228/models.rb', line 11078

def deserialize(params)
  unless params['Process'].nil?
    @Process = []
    params['Process'].each do |i|
      assetappprocessinfo_tmp = AssetAppProcessInfo.new
      assetappprocessinfo_tmp.deserialize(i)
      @Process << assetappprocessinfo_tmp
    end
  end
  @Total = params['Total']
  @RequestId = params['RequestId']
end