Class: TencentCloud::Ams::V20200608::TaskInput
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ams::V20200608::TaskInput
- Defined in:
- lib/v20200608/models.rb
Overview
音视频任务结构
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(dataid = nil, name = nil, input = nil) ⇒ TaskInput
constructor
A new instance of TaskInput.
Constructor Details
#initialize(dataid = nil, name = nil, input = nil) ⇒ TaskInput
Returns a new instance of TaskInput.
1375 1376 1377 1378 1379 |
# File 'lib/v20200608/models.rb', line 1375 def initialize(dataid=nil, name=nil, input=nil) @DataId = dataid @Name = name @Input = input end |
Instance Attribute Details
#DataId ⇒ Object
1373 1374 1375 |
# File 'lib/v20200608/models.rb', line 1373 def DataId @DataId end |
#Input ⇒ Object
1373 1374 1375 |
# File 'lib/v20200608/models.rb', line 1373 def Input @Input end |
#Name ⇒ Object
1373 1374 1375 |
# File 'lib/v20200608/models.rb', line 1373 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
1381 1382 1383 1384 1385 1386 1387 1388 |
# File 'lib/v20200608/models.rb', line 1381 def deserialize(params) @DataId = params['DataId'] @Name = params['Name'] unless params['Input'].nil? @Input = StorageInfo.new @Input.deserialize(params['Input']) end end |