Class: TencentCloud::Vm::V20200709::TaskInput
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vm::V20200709::TaskInput
- Defined in:
- lib/v20200709/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.
1195 1196 1197 1198 1199 |
# File 'lib/v20200709/models.rb', line 1195 def initialize(dataid=nil, name=nil, input=nil) @DataId = dataid @Name = name @Input = input end |
Instance Attribute Details
#DataId ⇒ Object
1193 1194 1195 |
# File 'lib/v20200709/models.rb', line 1193 def DataId @DataId end |
#Input ⇒ Object
1193 1194 1195 |
# File 'lib/v20200709/models.rb', line 1193 def Input @Input end |
#Name ⇒ Object
1193 1194 1195 |
# File 'lib/v20200709/models.rb', line 1193 def Name @Name end |
Instance Method Details
#deserialize(params) ⇒ Object
1201 1202 1203 1204 1205 1206 1207 1208 |
# File 'lib/v20200709/models.rb', line 1201 def deserialize(params) @DataId = params['DataId'] @Name = params['Name'] unless params['Input'].nil? @Input = StorageInfo.new @Input.deserialize(params['Input']) end end |