Class: TencentCloud::Cme::V20191029::DescribeTaskDetailResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cme::V20191029::DescribeTaskDetailResponse
- Defined in:
- lib/v20191029/models.rb
Overview
DescribeTaskDetail返回参数结构体
Instance Attribute Summary collapse
-
#CreateTime ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。. -
#ErrCode ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。. -
#ErrMsg ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。. -
#Progress ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。. -
#RequestId ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。. -
#Status ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。. -
#TaskType ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。. -
#VideoEditProjectOutput ⇒ Object
- PROCESSING:处理中:
- SUCCESS:成功;
- FAIL:失败。
- 0:成功;
- 其他值:失败。
- VIDEO_EDIT_PROJECT_EXPORT:视频编辑项目导出。
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(status = nil, progress = nil, errcode = nil, errmsg = nil, tasktype = nil, videoeditprojectoutput = nil, createtime = nil, requestid = nil) ⇒ DescribeTaskDetailResponse
constructor
A new instance of DescribeTaskDetailResponse.
Constructor Details
#initialize(status = nil, progress = nil, errcode = nil, errmsg = nil, tasktype = nil, videoeditprojectoutput = nil, createtime = nil, requestid = nil) ⇒ DescribeTaskDetailResponse
Returns a new instance of DescribeTaskDetailResponse.
1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 |
# File 'lib/v20191029/models.rb', line 1807 def initialize(status=nil, progress=nil, errcode=nil, errmsg=nil, tasktype=nil, videoeditprojectoutput=nil, createtime=nil, requestid=nil) @Status = status @Progress = progress @ErrCode = errcode @ErrMsg = errmsg @TaskType = tasktype @VideoEditProjectOutput = videoeditprojectoutput @CreateTime = createtime @RequestId = requestid end |
Instance Attribute Details
#CreateTime ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def CreateTime @CreateTime end |
#ErrCode ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def ErrCode @ErrCode end |
#ErrMsg ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def ErrMsg @ErrMsg end |
#Progress ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def Progress @Progress end |
#RequestId ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def RequestId @RequestId end |
#Status ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def Status @Status end |
#TaskType ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def TaskType @TaskType end |
#VideoEditProjectOutput ⇒ Object
1805 1806 1807 |
# File 'lib/v20191029/models.rb', line 1805 def VideoEditProjectOutput @VideoEditProjectOutput end |
Instance Method Details
#deserialize(params) ⇒ Object
1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 |
# File 'lib/v20191029/models.rb', line 1818 def deserialize(params) @Status = params['Status'] @Progress = params['Progress'] @ErrCode = params['ErrCode'] @ErrMsg = params['ErrMsg'] @TaskType = params['TaskType'] unless params['VideoEditProjectOutput'].nil? @VideoEditProjectOutput = VideoEditProjectOutput.new @VideoEditProjectOutput.deserialize(params['VideoEditProjectOutput']) end @CreateTime = params['CreateTime'] @RequestId = params['RequestId'] end |