Class: TencentCloud::Iotexplorer::V20190423::DescribeCloudStorageEventsWithAITasksResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iotexplorer::V20190423::DescribeCloudStorageEventsWithAITasksResponse
- Defined in:
- lib/v20190423/models.rb
Overview
DescribeCloudStorageEventsWithAITasks返回参数结构体
Instance Attribute Summary collapse
- #Context ⇒ Object
- #Events ⇒ Object
- #Listover ⇒ Object
- #RequestId ⇒ Object
- #Total ⇒ Object
- #VideoURL ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(events = nil, context = nil, listover = nil, total = nil, videourl = nil, requestid = nil) ⇒ DescribeCloudStorageEventsWithAITasksResponse
constructor
A new instance of DescribeCloudStorageEventsWithAITasksResponse.
Constructor Details
#initialize(events = nil, context = nil, listover = nil, total = nil, videourl = nil, requestid = nil) ⇒ DescribeCloudStorageEventsWithAITasksResponse
Returns a new instance of DescribeCloudStorageEventsWithAITasksResponse.
4456 4457 4458 4459 4460 4461 4462 4463 |
# File 'lib/v20190423/models.rb', line 4456 def initialize(events=nil, context=nil, listover=nil, total=nil, videourl=nil, requestid=nil) @Events = events @Context = context @Listover = listover @Total = total @VideoURL = videourl @RequestId = requestid end |
Instance Attribute Details
#Context ⇒ Object
4454 4455 4456 |
# File 'lib/v20190423/models.rb', line 4454 def Context @Context end |
#Events ⇒ Object
4454 4455 4456 |
# File 'lib/v20190423/models.rb', line 4454 def Events @Events end |
#Listover ⇒ Object
4454 4455 4456 |
# File 'lib/v20190423/models.rb', line 4454 def Listover @Listover end |
#RequestId ⇒ Object
4454 4455 4456 |
# File 'lib/v20190423/models.rb', line 4454 def RequestId @RequestId end |
#Total ⇒ Object
4454 4455 4456 |
# File 'lib/v20190423/models.rb', line 4454 def Total @Total end |
#VideoURL ⇒ Object
4454 4455 4456 |
# File 'lib/v20190423/models.rb', line 4454 def VideoURL @VideoURL end |
Instance Method Details
#deserialize(params) ⇒ Object
4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 |
# File 'lib/v20190423/models.rb', line 4465 def deserialize(params) unless params['Events'].nil? @Events = [] params['Events'].each do |i| cloudstorageeventwithaitasks_tmp = CloudStorageEventWithAITasks.new cloudstorageeventwithaitasks_tmp.deserialize(i) @Events << cloudstorageeventwithaitasks_tmp end end @Context = params['Context'] @Listover = params['Listover'] @Total = params['Total'] @VideoURL = params['VideoURL'] @RequestId = params['RequestId'] end |