Class: TencentCloud::Ams::V20200608::TaskResult

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

Overview

创建任务时的返回结果

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dataid = nil, taskid = nil, code = nil, message = nil) ⇒ TaskResult

Returns a new instance of TaskResult.



1437
1438
1439
1440
1441
1442
# File 'lib/v20200608/models.rb', line 1437

def initialize(dataid=nil, taskid=nil, code=nil, message=nil)
  @DataId = dataid
  @TaskId = taskid
  @Code = code
  @Message = message
end

Instance Attribute Details

#CodeObject

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

Parameters:

  • DataId:

    请求时传入的DataId

  • TaskId:

    TaskId,任务ID

  • Code:

    错误码。如果code为OK,则表示创建成功,其他则参考公共错误码

  • Message:

    如果错误,该字段表示错误详情



1435
1436
1437
# File 'lib/v20200608/models.rb', line 1435

def Code
  @Code
end

#DataIdObject

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

Parameters:

  • DataId:

    请求时传入的DataId

  • TaskId:

    TaskId,任务ID

  • Code:

    错误码。如果code为OK,则表示创建成功,其他则参考公共错误码

  • Message:

    如果错误,该字段表示错误详情



1435
1436
1437
# File 'lib/v20200608/models.rb', line 1435

def DataId
  @DataId
end

#MessageObject

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

Parameters:

  • DataId:

    请求时传入的DataId

  • TaskId:

    TaskId,任务ID

  • Code:

    错误码。如果code为OK,则表示创建成功,其他则参考公共错误码

  • Message:

    如果错误,该字段表示错误详情



1435
1436
1437
# File 'lib/v20200608/models.rb', line 1435

def Message
  @Message
end

#TaskIdObject

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

Parameters:

  • DataId:

    请求时传入的DataId

  • TaskId:

    TaskId,任务ID

  • Code:

    错误码。如果code为OK,则表示创建成功,其他则参考公共错误码

  • Message:

    如果错误,该字段表示错误详情



1435
1436
1437
# File 'lib/v20200608/models.rb', line 1435

def TaskId
  @TaskId
end

Instance Method Details

#deserialize(params) ⇒ Object



1444
1445
1446
1447
1448
1449
# File 'lib/v20200608/models.rb', line 1444

def deserialize(params)
  @DataId = params['DataId']
  @TaskId = params['TaskId']
  @Code = params['Code']
  @Message = params['Message']
end