Class: TencentCloud::Mps::V20190612::LiveRecordTemplate
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Mps::V20190612::LiveRecordTemplate
- Defined in:
- lib/v20190612/models.rb
Overview
直播录制模板详情
Instance Attribute Summary collapse
-
#Comment ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#CreateTime ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#Definition ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#HLSConfigure ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#MP4Configure ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#Name ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#RecordType ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#Type ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
. -
#UpdateTime ⇒ Object
- Preset:系统预置模板;
- Custom:用户自定义模板。
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(definition = nil, hlsconfigure = nil, mp4configure = nil, name = nil, comment = nil, type = nil, createtime = nil, updatetime = nil, recordtype = nil) ⇒ LiveRecordTemplate
constructor
A new instance of LiveRecordTemplate.
Constructor Details
#initialize(definition = nil, hlsconfigure = nil, mp4configure = nil, name = nil, comment = nil, type = nil, createtime = nil, updatetime = nil, recordtype = nil) ⇒ LiveRecordTemplate
Returns a new instance of LiveRecordTemplate.
18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 |
# File 'lib/v20190612/models.rb', line 18661 def initialize(definition=nil, hlsconfigure=nil, mp4configure=nil, name=nil, comment=nil, type=nil, createtime=nil, updatetime=nil, recordtype=nil) @Definition = definition @HLSConfigure = hlsconfigure @MP4Configure = mp4configure @Name = name @Comment = comment @Type = type @CreateTime = createtime @UpdateTime = updatetime @RecordType = recordtype end |
Instance Attribute Details
#Comment ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def Comment @Comment end |
#CreateTime ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def CreateTime @CreateTime end |
#Definition ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def Definition @Definition end |
#HLSConfigure ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def HLSConfigure @HLSConfigure end |
#MP4Configure ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def MP4Configure @MP4Configure end |
#Name ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def Name @Name end |
#RecordType ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def RecordType @RecordType end |
#Type ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def Type @Type end |
#UpdateTime ⇒ Object
18659 18660 18661 |
# File 'lib/v20190612/models.rb', line 18659 def UpdateTime @UpdateTime end |
Instance Method Details
#deserialize(params) ⇒ Object
18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 |
# File 'lib/v20190612/models.rb', line 18673 def deserialize(params) @Definition = params['Definition'] unless params['HLSConfigure'].nil? @HLSConfigure = HLSConfigureInfo.new @HLSConfigure.deserialize(params['HLSConfigure']) end unless params['MP4Configure'].nil? @MP4Configure = MP4ConfigureInfo.new @MP4Configure.deserialize(params['MP4Configure']) end @Name = params['Name'] @Comment = params['Comment'] @Type = params['Type'] @CreateTime = params['CreateTime'] @UpdateTime = params['UpdateTime'] @RecordType = params['RecordType'] end |