Class: TencentCloud::Bh::V20230418::DescribeChangePwdTaskDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Bh::V20230418::DescribeChangePwdTaskDetailResponse
- Defined in:
- lib/v20230418/models.rb
Overview
DescribeChangePwdTaskDetail返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, details = nil, requestid = nil) ⇒ DescribeChangePwdTaskDetailResponse
constructor
A new instance of DescribeChangePwdTaskDetailResponse.
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
#Details ⇒ Object
2576 2577 2578 |
# File 'lib/v20230418/models.rb', line 2576 def Details @Details end |
#RequestId ⇒ Object
2576 2577 2578 |
# File 'lib/v20230418/models.rb', line 2576 def RequestId @RequestId end |
#TotalCount ⇒ Object
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 |