Class: TencentCloud::Cwp::V20180228::DescribeExpertServiceListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cwp::V20180228::DescribeExpertServiceListResponse
- Defined in:
- lib/v20180228/models.rb
Overview
DescribeExpertServiceList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeExpertServiceListResponse
constructor
A new instance of DescribeExpertServiceListResponse.
Constructor Details
#initialize(totalcount = nil, list = nil, requestid = nil) ⇒ DescribeExpertServiceListResponse
Returns a new instance of DescribeExpertServiceListResponse.
14564 14565 14566 14567 14568 |
# File 'lib/v20180228/models.rb', line 14564 def initialize(totalcount=nil, list=nil, requestid=nil) @TotalCount = totalcount @List = list @RequestId = requestid end |
Instance Attribute Details
#List ⇒ Object
14562 14563 14564 |
# File 'lib/v20180228/models.rb', line 14562 def List @List end |
#RequestId ⇒ Object
14562 14563 14564 |
# File 'lib/v20180228/models.rb', line 14562 def RequestId @RequestId end |
#TotalCount ⇒ Object
14562 14563 14564 |
# File 'lib/v20180228/models.rb', line 14562 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 |
# File 'lib/v20180228/models.rb', line 14570 def deserialize(params) @TotalCount = params['TotalCount'] unless params['List'].nil? @List = [] params['List'].each do |i| securitybutlerinfo_tmp = SecurityButlerInfo.new securitybutlerinfo_tmp.deserialize(i) @List << securitybutlerinfo_tmp end end @RequestId = params['RequestId'] end |