Class: TencentCloud::Mps::V20190612::AiAnalysisTaskDelLogoResult

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20190612/models.rb

Overview

智能擦除结果类型

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(status = nil, errcode = nil, message = nil, input = nil, output = nil) ⇒ AiAnalysisTaskDelLogoResult

Returns a new instance of AiAnalysisTaskDelLogoResult.



1464
1465
1466
1467
1468
1469
1470
# File 'lib/v20190612/models.rb', line 1464

def initialize(status=nil, errcode=nil, message=nil, input=nil, output=nil)
  @Status = status
  @ErrCode = errcode
  @Message = message
  @Input = input
  @Output = output
end

Instance Attribute Details

#ErrCodeObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。

  • 错误码,0:成功,其他值:失败。

  • 错误信息。

  • 智能擦除任务输入。

  • 智能擦除任务输出。



1462
1463
1464
# File 'lib/v20190612/models.rb', line 1462

def ErrCode
  @ErrCode
end

#InputObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。

  • 错误码,0:成功,其他值:失败。

  • 错误信息。

  • 智能擦除任务输入。

  • 智能擦除任务输出。



1462
1463
1464
# File 'lib/v20190612/models.rb', line 1462

def Input
  @Input
end

#MessageObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。

  • 错误码,0:成功,其他值:失败。

  • 错误信息。

  • 智能擦除任务输入。

  • 智能擦除任务输出。



1462
1463
1464
# File 'lib/v20190612/models.rb', line 1462

def Message
  @Message
end

#OutputObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。

  • 错误码,0:成功,其他值:失败。

  • 错误信息。

  • 智能擦除任务输入。

  • 智能擦除任务输出。



1462
1463
1464
# File 'lib/v20190612/models.rb', line 1462

def Output
  @Output
end

#StatusObject

注意:此字段可能返回 null,表示取不到有效值。

Parameters:

  • 任务状态,有 PROCESSING,SUCCESS 和 FAIL 三种。

  • 错误码,0:成功,其他值:失败。

  • 错误信息。

  • 智能擦除任务输入。

  • 智能擦除任务输出。



1462
1463
1464
# File 'lib/v20190612/models.rb', line 1462

def Status
  @Status
end

Instance Method Details

#deserialize(params) ⇒ Object



1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
# File 'lib/v20190612/models.rb', line 1472

def deserialize(params)
  @Status = params['Status']
  @ErrCode = params['ErrCode']
  @Message = params['Message']
  unless params['Input'].nil?
    @Input = AiAnalysisTaskDelLogoInput.new
    @Input.deserialize(params['Input'])
  end
  unless params['Output'].nil?
    @Output = AiAnalysisTaskDelLogoOutput.new
    @Output.deserialize(params['Output'])
  end
end