Class: TencentCloud::Vod::V20180717::ComplexAdaptiveDynamicStreamingTaskInput

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

Overview

自适应码流任务的输入参数。

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(streampara = nil) ⇒ ComplexAdaptiveDynamicStreamingTaskInput

Returns a new instance of ComplexAdaptiveDynamicStreamingTaskInput.



5385
5386
5387
# File 'lib/v20180717/models.rb', line 5385

def initialize(streampara=nil)
  @StreamPara = streampara
end

Instance Attribute Details

#StreamParaObject

Parameters:

  • StreamPara:

    自适应码流参数。



5383
5384
5385
# File 'lib/v20180717/models.rb', line 5383

def StreamPara
  @StreamPara
end

Instance Method Details

#deserialize(params) ⇒ Object



5389
5390
5391
5392
5393
5394
# File 'lib/v20180717/models.rb', line 5389

def deserialize(params)
  unless params['StreamPara'].nil?
    @StreamPara = ComplexAdaptiveDynamicStreamingTaskStreamPara.new
    @StreamPara.deserialize(params['StreamPara'])
  end
end