Class: TencentCloud::Dasb::V20191018::DescribeChangePwdTaskDetailResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dasb::V20191018::DescribeChangePwdTaskDetailResponse
- Defined in:
- lib/v20191018/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.
1992 1993 1994 1995 1996 |
# File 'lib/v20191018/models.rb', line 1992 def initialize(totalcount=nil, details=nil, requestid=nil) @TotalCount = totalcount @Details = details @RequestId = requestid end |
Instance Attribute Details
#Details ⇒ Object
1990 1991 1992 |
# File 'lib/v20191018/models.rb', line 1990 def Details @Details end |
#RequestId ⇒ Object
1990 1991 1992 |
# File 'lib/v20191018/models.rb', line 1990 def RequestId @RequestId end |
#TotalCount ⇒ Object
1990 1991 1992 |
# File 'lib/v20191018/models.rb', line 1990 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 |
# File 'lib/v20191018/models.rb', line 1998 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 |