Class: TencentCloud::Bh::V20230418::DescribeChangePwdTaskDetailResponse

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

Overview

DescribeChangePwdTaskDetail返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(totalcount = nil, details = nil, requestid = nil) ⇒ DescribeChangePwdTaskDetailResponse

Returns a new instance of DescribeChangePwdTaskDetailResponse.



2578
2579
2580
2581
2582
# File 'lib/v20230418/models.rb', line 2578

def initialize(totalcount=nil, details=nil, requestid=nil)
  @TotalCount = totalcount
  @Details = details
  @RequestId = requestid
end

Instance Attribute Details

#DetailsObject

Parameters:

  • TotalCount:

    总数

  • Details:

    任务详情

  • RequestId:

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



2576
2577
2578
# File 'lib/v20230418/models.rb', line 2576

def Details
  @Details
end

#RequestIdObject

Parameters:

  • TotalCount:

    总数

  • Details:

    任务详情

  • RequestId:

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



2576
2577
2578
# File 'lib/v20230418/models.rb', line 2576

def RequestId
  @RequestId
end

#TotalCountObject

Parameters:

  • TotalCount:

    总数

  • Details:

    任务详情

  • RequestId:

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



2576
2577
2578
# File 'lib/v20230418/models.rb', line 2576

def TotalCount
  @TotalCount
end

Instance Method Details

#deserialize(params) ⇒ Object



2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
# File 'lib/v20230418/models.rb', line 2584

def deserialize(params)
  @TotalCount = params['TotalCount']
  unless params['Details'].nil?
    @Details = []
    params['Details'].each do |i|
      changepwdtaskdetail_tmp = ChangePwdTaskDetail.new
      changepwdtaskdetail_tmp.deserialize(i)
      @Details << changepwdtaskdetail_tmp
    end
  end
  @RequestId = params['RequestId']
end