Class: TencentCloud::Mps::V20190612::EditMediaTaskOutput

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

Overview

编辑视频任务的输出

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(outputstorage = nil, path = nil, metadata = nil) ⇒ EditMediaTaskOutput

Returns a new instance of EditMediaTaskOutput.



15293
15294
15295
15296
15297
# File 'lib/v20190612/models.rb', line 15293

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

Instance Attribute Details

#MetaDataObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • OutputStorage:

    编辑后文件的目标存储。

  • Path:

    编辑后的视频文件路径。

  • MetaData:

    编辑后的视频文件元信息。



15291
15292
15293
# File 'lib/v20190612/models.rb', line 15291

def 
  
end

#OutputStorageObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • OutputStorage:

    编辑后文件的目标存储。

  • Path:

    编辑后的视频文件路径。

  • MetaData:

    编辑后的视频文件元信息。



15291
15292
15293
# File 'lib/v20190612/models.rb', line 15291

def OutputStorage
  @OutputStorage
end

#PathObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • OutputStorage:

    编辑后文件的目标存储。

  • Path:

    编辑后的视频文件路径。

  • MetaData:

    编辑后的视频文件元信息。



15291
15292
15293
# File 'lib/v20190612/models.rb', line 15291

def Path
  @Path
end

Instance Method Details

#deserialize(params) ⇒ Object



15299
15300
15301
15302
15303
15304
15305
15306
15307
15308
15309
# File 'lib/v20190612/models.rb', line 15299

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