Class: TencentCloud::Iss::V20230517::ListAITasksResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iss::V20230517::ListAITasksResponse
- Defined in:
- lib/v20230517/models.rb
Overview
ListAITasks返回参数结构体
Instance Attribute Summary collapse
-
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, data = nil, requestid = nil) ⇒ ListAITasksResponse
constructor
A new instance of ListAITasksResponse.
Constructor Details
#initialize(totalcount = nil, data = nil, requestid = nil) ⇒ ListAITasksResponse
Returns a new instance of ListAITasksResponse.
4679 4680 4681 4682 4683 |
# File 'lib/v20230517/models.rb', line 4679 def initialize(totalcount=nil, data=nil, requestid=nil) @TotalCount = totalcount @Data = data @RequestId = requestid end |
Instance Attribute Details
#Data ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4677 4678 4679 |
# File 'lib/v20230517/models.rb', line 4677 def Data @Data end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4677 4678 4679 |
# File 'lib/v20230517/models.rb', line 4677 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
4677 4678 4679 |
# File 'lib/v20230517/models.rb', line 4677 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
4685 4686 4687 4688 4689 4690 4691 4692 |
# File 'lib/v20230517/models.rb', line 4685 def deserialize(params) @TotalCount = params['TotalCount'] unless params['Data'].nil? @Data = ListAITaskData.new @Data.deserialize(params['Data']) end @RequestId = params['RequestId'] end |