Class: TencentCloud::Mps::V20190612::AiAnalysisTaskVideoRemakeOutput

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190612/models.rb

Overview

视频去重结果信息

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path = nil, outputstorage = nil) ⇒ AiAnalysisTaskVideoRemakeOutput

Returns a new instance of AiAnalysisTaskVideoRemakeOutput.



2414
2415
2416
2417
# File 'lib/v20190612/models.rb', line 2414

def initialize(path=nil, outputstorage=nil)
  @Path = path
  @OutputStorage = outputstorage
end

Instance Attribute Details

#OutputStorageObject

Parameters:

  • Path:

    视频智能去重文件路径

  • OutputStorage:

    智能视频去重的存储位置



2412
2413
2414
# File 'lib/v20190612/models.rb', line 2412

def OutputStorage
  @OutputStorage
end

#PathObject

Parameters:

  • Path:

    视频智能去重文件路径

  • OutputStorage:

    智能视频去重的存储位置



2412
2413
2414
# File 'lib/v20190612/models.rb', line 2412

def Path
  @Path
end

Instance Method Details

#deserialize(params) ⇒ Object



2419
2420
2421
2422
2423
2424
2425
# File 'lib/v20190612/models.rb', line 2419

def deserialize(params)
  @Path = params['Path']
  unless params['OutputStorage'].nil?
    @OutputStorage = TaskOutputStorage.new
    @OutputStorage.deserialize(params['OutputStorage'])
  end
end