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.
14091 14092 14093 14094 14095 |
# File 'lib/v20180228/models.rb', line 14091 def initialize(totalcount=nil, records=nil, requestid=nil) @TotalCount = totalcount @Records = records @RequestId = requestid end |
Instance Attribute Details
#Records ⇒ Object
14089 14090 14091 |
# File 'lib/v20180228/models.rb', line 14089 def Records @Records end |
#RequestId ⇒ Object
14089 14090 14091 |
# File 'lib/v20180228/models.rb', line 14089 def RequestId @RequestId end |
#TotalCount ⇒ Object
14089 14090 14091 |
# File 'lib/v20180228/models.rb', line 14089 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 |
# File 'lib/v20180228/models.rb', line 14097 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 |