Class: TencentCloud::Vm::V20210922::TaskInput
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vm::V20210922::TaskInput
- Defined in:
- lib/v20210922/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.
1422 1423 1424 1425 1426 |
# File 'lib/v20210922/models.rb', line 1422 def initialize(dataid=nil, name=nil, input=nil) @DataId = dataid @Name = name @Input = input end |
Instance Attribute Details
#DataId ⇒ Object
1420 1421 1422 |
# File 'lib/v20210922/models.rb', line 1420 def DataId @DataId end |
#Input ⇒ Object
1420 1421 1422 |
# File 'lib/v20210922/models.rb', line 1420 def Input @Input end |
#Name ⇒ Object
1420 1421 1422 |
# File 'lib/v20210922/models.rb', line 1420 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
1428 1429 1430 1431 1432 1433 1434 1435 |
# File 'lib/v20210922/models.rb', line 1428 def deserialize(params) @DataId = params['DataId'] @Name = params['Name'] unless params['Input'].nil? @Input = StorageInfo.new @Input.deserialize(params['Input']) end end |