Class: TencentCloud::Vod::V20180717::AiReviewTaskPornOcrResult
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Vod::V20180717::AiReviewTaskPornOcrResult
- Defined in:
- lib/v20180717/models.rb
Overview
音视频审核 Ocr 文字涉及令人反感的信息的任务结果类型
Instance Attribute Summary collapse
- #ErrCode ⇒ Object
- #ErrCodeExt ⇒ Object
- #Input ⇒ Object
- #Message ⇒ Object
- #Output ⇒ Object
- #Progress ⇒ Object
- #Status ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(status = nil, errcodeext = nil, errcode = nil, message = nil, input = nil, output = nil, progress = nil) ⇒ AiReviewTaskPornOcrResult
constructor
A new instance of AiReviewTaskPornOcrResult.
Constructor Details
#initialize(status = nil, errcodeext = nil, errcode = nil, message = nil, input = nil, output = nil, progress = nil) ⇒ AiReviewTaskPornOcrResult
Returns a new instance of AiReviewTaskPornOcrResult.
3412 3413 3414 3415 3416 3417 3418 3419 3420 |
# File 'lib/v20180717/models.rb', line 3412 def initialize(status=nil, errcodeext=nil, errcode=nil, =nil, input=nil, output=nil, progress=nil) @Status = status @ErrCodeExt = errcodeext @ErrCode = errcode @Message = @Input = input @Output = output @Progress = progress end |
Instance Attribute Details
#ErrCode ⇒ Object
3410 3411 3412 |
# File 'lib/v20180717/models.rb', line 3410 def ErrCode @ErrCode end |
#ErrCodeExt ⇒ Object
3410 3411 3412 |
# File 'lib/v20180717/models.rb', line 3410 def ErrCodeExt @ErrCodeExt end |
#Input ⇒ Object
3410 3411 3412 |
# File 'lib/v20180717/models.rb', line 3410 def Input @Input end |
#Message ⇒ Object
3410 3411 3412 |
# File 'lib/v20180717/models.rb', line 3410 def Message @Message end |
#Output ⇒ Object
3410 3411 3412 |
# File 'lib/v20180717/models.rb', line 3410 def Output @Output end |
#Progress ⇒ Object
3410 3411 3412 |
# File 'lib/v20180717/models.rb', line 3410 def Progress @Progress end |
#Status ⇒ Object
3410 3411 3412 |
# File 'lib/v20180717/models.rb', line 3410 def Status @Status end |
Instance Method Details
#deserialize(params) ⇒ Object
3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 |
# File 'lib/v20180717/models.rb', line 3422 def deserialize(params) @Status = params['Status'] @ErrCodeExt = params['ErrCodeExt'] @ErrCode = params['ErrCode'] @Message = params['Message'] unless params['Input'].nil? @Input = AiReviewPornOcrTaskInput.new @Input.deserialize(params['Input']) end unless params['Output'].nil? @Output = AiReviewPornOcrTaskOutput.new @Output.deserialize(params['Output']) end @Progress = params['Progress'] end |