Class: TencentCloud::Ie::V20200304::TargetVideoInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ie::V20200304::TargetVideoInfo
- Defined in:
- lib/v20200304/models.rb
Overview
目标视频信息。
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(width = nil, height = nil, framerate = nil) ⇒ TargetVideoInfo
constructor
A new instance of TargetVideoInfo.
Constructor Details
#initialize(width = nil, height = nil, framerate = nil) ⇒ TargetVideoInfo
Returns a new instance of TargetVideoInfo.
3351 3352 3353 3354 3355 |
# File 'lib/v20200304/models.rb', line 3351 def initialize(width=nil, height=nil, framerate=nil) @Width = width @Height = height @FrameRate = framerate end |
Instance Attribute Details
#FrameRate ⇒ Object
3349 3350 3351 |
# File 'lib/v20200304/models.rb', line 3349 def FrameRate @FrameRate end |
#Height ⇒ Object
3349 3350 3351 |
# File 'lib/v20200304/models.rb', line 3349 def Height @Height end |
#Width ⇒ Object
3349 3350 3351 |
# File 'lib/v20200304/models.rb', line 3349 def Width @Width end |
Instance Method Details
#deserialize(params) ⇒ Object
3357 3358 3359 3360 3361 |
# File 'lib/v20200304/models.rb', line 3357 def deserialize(params) @Width = params['Width'] @Height = params['Height'] @FrameRate = params['FrameRate'] end |