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.



6263
6264
6265
# File 'lib/v20180717/models.rb', line 6263

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

Instance Attribute Details

#StreamParaObject

Parameters:

  • StreamPara:

    自适应码流参数。



6261
6262
6263
# File 'lib/v20180717/models.rb', line 6261

def StreamPara
  @StreamPara
end

Instance Method Details

#deserialize(params) ⇒ Object



6267
6268
6269
6270
6271
6272
# File 'lib/v20180717/models.rb', line 6267

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