Class: TencentCloud::Cwp::V20180228::DescribeClientExceptionResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeClientExceptionResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeClientException返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, records = nil, requestid = nil) ⇒ DescribeClientExceptionResponse
constructor
A new instance of DescribeClientExceptionResponse.
Constructor Details
#initialize(totalcount = nil, records = nil, requestid = nil) ⇒ DescribeClientExceptionResponse
Returns a new instance of DescribeClientExceptionResponse.
14170 14171 14172 14173 14174 |
# File 'lib/v20180228/models.rb', line 14170 def initialize(totalcount=nil, records=nil, requestid=nil) @TotalCount = totalcount @Records = records @RequestId = requestid end |
Instance Attribute Details
#Records ⇒ Object
14168 14169 14170 |
# File 'lib/v20180228/models.rb', line 14168 def Records @Records end |
#RequestId ⇒ Object
14168 14169 14170 |
# File 'lib/v20180228/models.rb', line 14168 def RequestId @RequestId end |
#TotalCount ⇒ Object
14168 14169 14170 |
# File 'lib/v20180228/models.rb', line 14168 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 |
# File 'lib/v20180228/models.rb', line 14176 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Records'].nil? @Records = [] params['Records'].each do |i| recordinfo_tmp = RecordInfo.new recordinfo_tmp.deserialize(i) @Records << recordinfo_tmp end end @RequestId = params['RequestId'] end |