Class: TencentCloud::Vod::V20180717::ModifyJustInTimeTranscodeTemplateRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::ModifyJustInTimeTranscodeTemplateRequest
- Defined in:
- lib/v20180717/models.rb
Overview
ModifyJustInTimeTranscodeTemplate请求参数结构体
Instance Attribute Summary collapse
- #Comment ⇒ Object
- #Name ⇒ Object
- #SubAppId ⇒ Object
- #VideoConfigure ⇒ Object
- #WatermarkConfigure ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, subappid = nil, videoconfigure = nil, watermarkconfigure = nil, comment = nil) ⇒ ModifyJustInTimeTranscodeTemplateRequest
constructor
A new instance of ModifyJustInTimeTranscodeTemplateRequest.
Constructor Details
#initialize(name = nil, subappid = nil, videoconfigure = nil, watermarkconfigure = nil, comment = nil) ⇒ ModifyJustInTimeTranscodeTemplateRequest
Returns a new instance of ModifyJustInTimeTranscodeTemplateRequest.
19644 19645 19646 19647 19648 19649 19650 |
# File 'lib/v20180717/models.rb', line 19644 def initialize(name=nil, subappid=nil, videoconfigure=nil, watermarkconfigure=nil, comment=nil) @Name = name @SubAppId = subappid @VideoConfigure = videoconfigure @WatermarkConfigure = watermarkconfigure @Comment = comment end |
Instance Attribute Details
#Comment ⇒ Object
19642 19643 19644 |
# File 'lib/v20180717/models.rb', line 19642 def Comment @Comment end |
#Name ⇒ Object
19642 19643 19644 |
# File 'lib/v20180717/models.rb', line 19642 def Name @Name end |
#SubAppId ⇒ Object
19642 19643 19644 |
# File 'lib/v20180717/models.rb', line 19642 def SubAppId @SubAppId end |
#VideoConfigure ⇒ Object
19642 19643 19644 |
# File 'lib/v20180717/models.rb', line 19642 def VideoConfigure @VideoConfigure end |
#WatermarkConfigure ⇒ Object
19642 19643 19644 |
# File 'lib/v20180717/models.rb', line 19642 def WatermarkConfigure @WatermarkConfigure end |
Instance Method Details
#deserialize(params) ⇒ Object
19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 |
# File 'lib/v20180717/models.rb', line 19652 def deserialize(params) @Name = params['Name'] @SubAppId = params['SubAppId'] unless params['VideoConfigure'].nil? @VideoConfigure = VideoConfigureInfoForUpdate.new @VideoConfigure.deserialize(params['VideoConfigure']) end unless params['WatermarkConfigure'].nil? @WatermarkConfigure = WatermarkConfigureInfoForUpdate.new @WatermarkConfigure.deserialize(params['WatermarkConfigure']) end @Comment = params['Comment'] end |