Class: TencentCloud::Ccc::V20200210::DescribeAIAgentInfoListResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Ccc::V20200210::DescribeAIAgentInfoListResponse
- Defined in:
- lib/v20200210/models.rb
Overview
DescribeAIAgentInfoList返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(aiagentinfolist = nil, totalcount = nil, requestid = nil) ⇒ DescribeAIAgentInfoListResponse
constructor
A new instance of DescribeAIAgentInfoListResponse.
Constructor Details
#initialize(aiagentinfolist = nil, totalcount = nil, requestid = nil) ⇒ DescribeAIAgentInfoListResponse
Returns a new instance of DescribeAIAgentInfoListResponse.
2610 2611 2612 2613 2614 |
# File 'lib/v20200210/models.rb', line 2610 def initialize(aiagentinfolist=nil, totalcount=nil, requestid=nil) @AIAgentInfoList = aiagentinfolist @TotalCount = totalcount @RequestId = requestid end |
Instance Attribute Details
#AIAgentInfoList ⇒ Object
2608 2609 2610 |
# File 'lib/v20200210/models.rb', line 2608 def AIAgentInfoList @AIAgentInfoList end |
#RequestId ⇒ Object
2608 2609 2610 |
# File 'lib/v20200210/models.rb', line 2608 def RequestId @RequestId end |
#TotalCount ⇒ Object
2608 2609 2610 |
# File 'lib/v20200210/models.rb', line 2608 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 |
# File 'lib/v20200210/models.rb', line 2616 def deserialize(params) unless params['AIAgentInfoList'].nil? @AIAgentInfoList = [] params['AIAgentInfoList'].each do |i| aiagentinfo_tmp = AIAgentInfo.new aiagentinfo_tmp.deserialize(i) @AIAgentInfoList << aiagentinfo_tmp end end @TotalCount = params['TotalCount'] @RequestId = params['RequestId'] end |