Class: TencentCloud::Cme::V20191029::ModifyProjectRequest
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::ModifyProjectRequest
- Defined in:
- lib/v20191029/models.rb
Overview
ModifyProject请求参数结构体
Instance Attribute Summary collapse
-
#AspectRatio ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
- Default:默认模式,即普通视频编辑项目。
- VideoEditTemplate:剪辑模板制作模式,用于制作剪辑模板。
. -
#Mode ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
- Default:默认模式,即普通视频编辑项目。
- VideoEditTemplate:剪辑模板制作模式,用于制作剪辑模板。
. -
#Name ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
- Default:默认模式,即普通视频编辑项目。
- VideoEditTemplate:剪辑模板制作模式,用于制作剪辑模板。
. -
#Owner ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
- Default:默认模式,即普通视频编辑项目。
- VideoEditTemplate:剪辑模板制作模式,用于制作剪辑模板。
. -
#Platform ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
- Default:默认模式,即普通视频编辑项目。
- VideoEditTemplate:剪辑模板制作模式,用于制作剪辑模板。
. -
#ProjectId ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
- Default:默认模式,即普通视频编辑项目。
- VideoEditTemplate:剪辑模板制作模式,用于制作剪辑模板。
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(platform = nil, projectid = nil, name = nil, aspectratio = nil, owner = nil, mode = nil) ⇒ ModifyProjectRequest
constructor
A new instance of ModifyProjectRequest.
Constructor Details
#initialize(platform = nil, projectid = nil, name = nil, aspectratio = nil, owner = nil, mode = nil) ⇒ ModifyProjectRequest
Returns a new instance of ModifyProjectRequest.
4586 4587 4588 4589 4590 4591 4592 4593 |
# File 'lib/v20191029/models.rb', line 4586 def initialize(platform=nil, projectid=nil, name=nil, aspectratio=nil, owner=nil, mode=nil) @Platform = platform @ProjectId = projectid @Name = name @AspectRatio = aspectratio @Owner = owner @Mode = mode end |
Instance Attribute Details
#AspectRatio ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
4584 4585 4586 |
# File 'lib/v20191029/models.rb', line 4584 def AspectRatio @AspectRatio end |
#Mode ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
4584 4585 4586 |
# File 'lib/v20191029/models.rb', line 4584 def Mode @Mode end |
#Name ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
4584 4585 4586 |
# File 'lib/v20191029/models.rb', line 4584 def Name @Name end |
#Owner ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
4584 4585 4586 |
# File 'lib/v20191029/models.rb', line 4584 def Owner @Owner end |
#Platform ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
4584 4585 4586 |
# File 'lib/v20191029/models.rb', line 4584 def Platform @Platform end |
#ProjectId ⇒ Object
当 Category 为 VIDEO_EDIT 时,可选模式有:
4584 4585 4586 |
# File 'lib/v20191029/models.rb', line 4584 def ProjectId @ProjectId end |
Instance Method Details
#deserialize(params) ⇒ Object
4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 |
# File 'lib/v20191029/models.rb', line 4595 def deserialize(params) @Platform = params['Platform'] @ProjectId = params['ProjectId'] @Name = params['Name'] @AspectRatio = params['AspectRatio'] unless params['Owner'].nil? @Owner = Entity.new @Owner.deserialize(params['Owner']) end @Mode = params['Mode'] end |